
    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_8eecc4136d3413508e52a15a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight: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_10adc569bb17b848a42e20a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;font-style:normal;font-weight: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_f7c4d3281e0fbbd2151dca3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight: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_7b86a15a84d1e840925fd6c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;font-style:normal;font-weight: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_2b604896d2f832a05b04271d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7dcd5c5cc27af64375149d41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.799000;font-style:normal;font-weight: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_5fb8b9c629546ddb55ab59f5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4aa235bd56190ef68207c565.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;font-style:normal;font-weight: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_71e210b8e44db113e26ecd01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.822000;font-style:normal;font-weight: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_cab135b4d1b9dd21c9f081df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.876000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a78fca813520f07e5f703a5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c57915641f7b96dd5efa3a5b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_21e779cccb80644bfe9f4120.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2eee0a4f94001fa6ee68cd90.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_b1565d4abfb8e0286b7f3111.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_a30dde110a1fe24a7cbbe106.woff2')format("woff");}.ff10{font-family:ff10;line-height:3.732000;font-style:normal;font-weight: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_70843385d937b8584cb65ad2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.237029;font-style:normal;font-weight: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_42dc52a5787de02ce0dbdc4a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c455f8d16d989eeccc366d70.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.725000;font-style:normal;font-weight: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_343ea96b0cfa24e0c83fbdbd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.738000;font-style:normal;font-weight: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_51b500f5dd325fee52891cc3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.705000;font-style:normal;font-weight: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_a1d1d595bd57d60fa330a870.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.723000;font-style:normal;font-weight: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_6ff2be2d37352e62c3b680a6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.704000;font-style:normal;font-weight: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_36236cebaa5b8952897ec643.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.892000;font-style:normal;font-weight: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_49ce8e5aaa263559259c92bd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.706000;font-style:normal;font-weight: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_3cf1db9c8a270d5a702df969.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7cbb5ba65f07d100a46a6185.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_439af4c919635274f93d4506.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.708000;font-style:normal;font-weight: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_eeb6b6d0873762fa833a0805.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:3.732000;font-style:normal;font-weight: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_edbf6f803ed324fdbd17f813.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.782000;font-style:normal;font-weight: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_0a893e94ccacd73f54352600.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.336000;font-style:normal;font-weight: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_e7befa0c3414a3affe25e22b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.114000;font-style:normal;font-weight: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_b57017c37c6dd218b08a3bee.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_855ee51d120e3d2c97b1c68c.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_18db4f78b77fe2beb1c906a5.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_c26645c44f8d7b098cb328c8.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.258000;font-style:normal;font-weight: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_8dcf4fa2790b0a6fa76e4d48.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.336000;font-style:normal;font-weight: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_18db4f78b77fe2beb1c906a5.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_edbf6f803ed324fdbd17f813.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.782000;font-style:normal;font-weight: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_37e151f4a5f8c3cae991cd2c.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_d985cb5fe1071bfd76cc59df.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.264000;font-style:normal;font-weight: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_c26645c44f8d7b098cb328c8.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.258000;font-style:normal;font-weight: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_68a9068e6ccb6ab103daa47e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.782000;font-style:normal;font-weight: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_ced0b8631ab2f8ccb1ac1298.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.336000;font-style:normal;font-weight: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_1146f662828f95d3fd65dce9.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_9b760e36d133e0531e005db8.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_ecf6ae805dcdaa3c50b67b13.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.262000;font-style:normal;font-weight: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_9883cec8e350eade9bbe0360.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_2c043b0a1594435bb7397e38.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.258000;font-style:normal;font-weight: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_748b3cd37456fd2f7646976e.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.336000;font-style:normal;font-weight: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_9f2ff738515cec61fd6096e0.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_9883cec8e350eade9bbe0360.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_66bd34ed179abc7846082319.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.782000;font-style:normal;font-weight: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_2c043b0a1594435bb7397e38.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.258000;font-style:normal;font-weight: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_68a9068e6ccb6ab103daa47e.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.782000;font-style:normal;font-weight: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_7adfbfea93c9247a91171f16.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.336000;font-style:normal;font-weight: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_1df92cec8f41292501322747.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_93ba00d1e75d44308e322b4a.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_2c043b0a1594435bb7397e38.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.258000;font-style:normal;font-weight: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_b1b3c744c1e2ae45eeff6e11.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.336000;font-style:normal;font-weight: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_a6d6bc233c66e8dcefc807d0.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_de3e5a8a5c1fa19e01fac915.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.782000;font-style:normal;font-weight: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_8242d128c34b43a4052aa784.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.262000;font-style:normal;font-weight: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_dbb34ccdf551a8ac48c8fdf9.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_b7de8d6288745aacf8123259.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.114000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);-ms-transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);-webkit-transform:matrix(0.085505,-0.234923,0.234923,0.085505,0,0);}
.m6{transform:matrix(0.086652,0.234502,-0.234502,0.086652,0,0);-ms-transform:matrix(0.086652,0.234502,-0.234502,0.086652,0,0);-webkit-transform:matrix(0.086652,0.234502,-0.234502,0.086652,0,0);}
.m5{transform:matrix(0.100087,0.229091,-0.229091,0.100087,0,0);-ms-transform:matrix(0.100087,0.229091,-0.229091,0.100087,0,0);-webkit-transform:matrix(0.100087,0.229091,-0.229091,0.100087,0,0);}
.m9{transform:matrix(0.108021,-0.225458,0.225458,0.108021,0,0);-ms-transform:matrix(0.108021,-0.225458,0.225458,0.108021,0,0);-webkit-transform:matrix(0.108021,-0.225458,0.225458,0.108021,0,0);}
.m4{transform:matrix(0.117471,0.220682,-0.220682,0.117471,0,0);-ms-transform:matrix(0.117471,0.220682,-0.220682,0.117471,0,0);-webkit-transform:matrix(0.117471,0.220682,-0.220682,0.117471,0,0);}
.m8{transform:matrix(0.126006,-0.215922,0.215922,0.126006,0,0);-ms-transform:matrix(0.126006,-0.215922,0.215922,0.126006,0,0);-webkit-transform:matrix(0.126006,-0.215922,0.215922,0.126006,0,0);}
.m7{transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);-ms-transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);-webkit-transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);}
.m3{transform:matrix(0.172152,0.181284,-0.181284,0.172152,0,0);-ms-transform:matrix(0.172152,0.181284,-0.181284,0.172152,0,0);-webkit-transform:matrix(0.172152,0.181284,-0.181284,0.172152,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-29.430878px;}
.v17{vertical-align:-10.592936px;}
.v1{vertical-align:-8.970000px;}
.v19{vertical-align:-7.822320px;}
.v10{vertical-align:-6.481470px;}
.ve{vertical-align:-4.180891px;}
.vf{vertical-align:-2.300417px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.724000px;}
.v5{vertical-align:9.828000px;}
.v2{vertical-align:14.694000px;}
.v7{vertical-align:16.548000px;}
.v4{vertical-align:18.792000px;}
.v12{vertical-align:20.058000px;}
.v8{vertical-align:21.690000px;}
.v6{vertical-align:25.512000px;}
.v11{vertical-align:28.098000px;}
.v18{vertical-align:30.426702px;}
.va{vertical-align:32.034000px;}
.v9{vertical-align:41.004000px;}
.v15{vertical-align:42.878493px;}
.v16{vertical-align:44.174251px;}
.v14{vertical-align:47.820000px;}
.v13{vertical-align:53.796000px;}
.vd{vertical-align:68.173769px;}
.vb{vertical-align:81.444000px;}
.ls17{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000062px;}
.ls5e{letter-spacing:0.000141px;}
.ls60{letter-spacing:0.000366px;}
.ls31{letter-spacing:0.000538px;}
.ls13{letter-spacing:0.000767px;}
.ls42{letter-spacing:0.001289px;}
.ls57{letter-spacing:0.001500px;}
.ls40{letter-spacing:0.001622px;}
.ls39{letter-spacing:0.002050px;}
.ls18{letter-spacing:0.002250px;}
.ls7b{letter-spacing:0.002338px;}
.ls67{letter-spacing:0.002387px;}
.ls49{letter-spacing:0.002646px;}
.ls1f{letter-spacing:0.003031px;}
.ls63{letter-spacing:0.003056px;}
.ls5f{letter-spacing:0.003543px;}
.lsc9{letter-spacing:0.003652px;}
.ls1{letter-spacing:0.004090px;}
.ls5{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004503px;}
.ls14{letter-spacing:0.004738px;}
.ls16{letter-spacing:0.004893px;}
.ls1d{letter-spacing:0.005306px;}
.ls94{letter-spacing:0.005374px;}
.ls37{letter-spacing:0.005758px;}
.lse{letter-spacing:0.006062px;}
.lsaf{letter-spacing:0.006141px;}
.ls1a{letter-spacing:0.006767px;}
.ls3a{letter-spacing:0.014971px;}
.ls36{letter-spacing:0.022533px;}
.ls86{letter-spacing:0.025008px;}
.lsaa{letter-spacing:0.025101px;}
.ls75{letter-spacing:0.025744px;}
.ls80{letter-spacing:0.027189px;}
.ls9c{letter-spacing:0.033405px;}
.ls3b{letter-spacing:0.035259px;}
.ls55{letter-spacing:0.043581px;}
.ls51{letter-spacing:0.043621px;}
.ls76{letter-spacing:0.061300px;}
.ls50{letter-spacing:0.072767px;}
.ls4f{letter-spacing:0.083380px;}
.ls54{letter-spacing:0.111174px;}
.ls9f{letter-spacing:0.164362px;}
.ls99{letter-spacing:0.218130px;}
.ls6f{letter-spacing:0.294217px;}
.lsc2{letter-spacing:0.597707px;}
.ls7e{letter-spacing:0.619295px;}
.ls7f{letter-spacing:0.658062px;}
.lsa1{letter-spacing:0.723193px;}
.lsa7{letter-spacing:0.741822px;}
.lsa3{letter-spacing:0.765075px;}
.ls72{letter-spacing:0.784677px;}
.ls85{letter-spacing:0.809950px;}
.lsa4{letter-spacing:0.812966px;}
.ls9e{letter-spacing:0.821900px;}
.ls73{letter-spacing:0.833794px;}
.lscf{letter-spacing:0.840017px;}
.ls81{letter-spacing:0.893286px;}
.lsbb{letter-spacing:0.896612px;}
.ls82{letter-spacing:0.912898px;}
.lsbc{letter-spacing:0.916297px;}
.ls97{letter-spacing:1.090834px;}
.ls98{letter-spacing:1.347856px;}
.ls56{letter-spacing:1.456834px;}
.ls7d{letter-spacing:1.587099px;}
.ls83{letter-spacing:1.738987px;}
.lsbd{letter-spacing:1.745462px;}
.lsbe{letter-spacing:1.789075px;}
.ls71{letter-spacing:1.790181px;}
.ls96{letter-spacing:1.960585px;}
.ls6c{letter-spacing:2.010815px;}
.lsc4{letter-spacing:2.092103px;}
.lsa6{letter-spacing:2.181712px;}
.lsa2{letter-spacing:2.301320px;}
.ls5b{letter-spacing:2.371909px;}
.ls58{letter-spacing:2.389613px;}
.ls59{letter-spacing:2.391527px;}
.ls5c{letter-spacing:2.391746px;}
.ls5a{letter-spacing:2.395613px;}
.ls70{letter-spacing:2.758731px;}
.ls3{letter-spacing:2.964877px;}
.ls21{letter-spacing:2.984525px;}
.ls1e{letter-spacing:2.986246px;}
.lsa{letter-spacing:2.986766px;}
.lsb{letter-spacing:2.987675px;}
.lsc{letter-spacing:2.988780px;}
.ls44{letter-spacing:2.989492px;}
.ls32{letter-spacing:2.990525px;}
.ls9{letter-spacing:2.990725px;}
.ls4c{letter-spacing:2.992766px;}
.ls4e{letter-spacing:2.993149px;}
.lsb0{letter-spacing:3.341280px;}
.ls22{letter-spacing:4.490066px;}
.lsa5{letter-spacing:5.343969px;}
.ls9d{letter-spacing:8.962157px;}
.ls53{letter-spacing:10.728255px;}
.ls38{letter-spacing:11.879254px;}
.ls25{letter-spacing:13.278538px;}
.ls6b{letter-spacing:13.280338px;}
.lsa9{letter-spacing:13.283141px;}
.ls28{letter-spacing:13.284538px;}
.ls6e{letter-spacing:13.623455px;}
.ls6d{letter-spacing:13.623511px;}
.ls74{letter-spacing:13.746085px;}
.ls90{letter-spacing:13.875031px;}
.ls62{letter-spacing:14.115056px;}
.ls8e{letter-spacing:14.366338px;}
.lsc0{letter-spacing:14.405674px;}
.lsb8{letter-spacing:15.003729px;}
.ls95{letter-spacing:15.291031px;}
.ls26{letter-spacing:16.268525px;}
.ls6a{letter-spacing:16.277149px;}
.ls23{letter-spacing:16.602538px;}
.ls77{letter-spacing:16.688859px;}
.ls7{letter-spacing:16.737031px;}
.ls5d{letter-spacing:16.742850px;}
.ls61{letter-spacing:17.099587px;}
.ls7a{letter-spacing:17.229031px;}
.lsce{letter-spacing:17.523031px;}
.lsae{letter-spacing:17.585236px;}
.lsad{letter-spacing:17.591236px;}
.lsb1{letter-spacing:17.764503px;}
.ls84{letter-spacing:17.866176px;}
.lsf{letter-spacing:18.242525px;}
.lsc3{letter-spacing:18.304257px;}
.ls15{letter-spacing:18.758525px;}
.lsba{letter-spacing:18.829364px;}
.ls35{letter-spacing:19.131031px;}
.ls8c{letter-spacing:19.341031px;}
.ls41{letter-spacing:19.514850px;}
.ls65{letter-spacing:19.589149px;}
.ls2d{letter-spacing:19.592525px;}
.ls68{letter-spacing:19.595149px;}
.lsc6{letter-spacing:19.611031px;}
.lsa8{letter-spacing:19.762847px;}
.lsb9{letter-spacing:20.024856px;}
.lsb5{letter-spacing:20.127031px;}
.lsb4{letter-spacing:20.133031px;}
.ls2{letter-spacing:20.169525px;}
.ls0{letter-spacing:20.175525px;}
.lsc1{letter-spacing:20.456224px;}
.lsca{letter-spacing:20.511031px;}
.ls88{letter-spacing:20.655031px;}
.ls87{letter-spacing:20.661031px;}
.lscc{letter-spacing:20.883031px;}
.ls20{letter-spacing:20.919031px;}
.ls91{letter-spacing:20.920503px;}
.ls8f{letter-spacing:20.925031px;}
.ls45{letter-spacing:21.195031px;}
.ls4a{letter-spacing:21.316246px;}
.lsb7{letter-spacing:21.423611px;}
.lsc7{letter-spacing:21.489031px;}
.ls64{letter-spacing:21.557149px;}
.lsc5{letter-spacing:21.671236px;}
.lscb{letter-spacing:21.717031px;}
.ls78{letter-spacing:21.810538px;}
.ls9b{letter-spacing:22.176811px;}
.ls6{letter-spacing:22.461031px;}
.ls43{letter-spacing:22.500582px;}
.ls4b{letter-spacing:22.605031px;}
.ls8d{letter-spacing:22.905031px;}
.lscd{letter-spacing:23.013031px;}
.ls8{letter-spacing:23.043031px;}
.lsc8{letter-spacing:23.139031px;}
.ls89{letter-spacing:23.523031px;}
.ls2b{letter-spacing:23.772538px;}
.ls66{letter-spacing:23.778538px;}
.ls79{letter-spacing:23.822100px;}
.ls12{letter-spacing:23.906525px;}
.ls11{letter-spacing:23.908246px;}
.lsbf{letter-spacing:24.477031px;}
.ls1c{letter-spacing:25.256525px;}
.ls4{letter-spacing:25.587031px;}
.lsab{letter-spacing:25.782383px;}
.lsb2{letter-spacing:26.007031px;}
.ls8b{letter-spacing:26.607031px;}
.ls92{letter-spacing:26.901031px;}
.lsb6{letter-spacing:28.293031px;}
.lsac{letter-spacing:28.870113px;}
.ls93{letter-spacing:29.433031px;}
.lsd{letter-spacing:29.887409px;}
.ls46{letter-spacing:29.893409px;}
.ls8a{letter-spacing:30.939031px;}
.lsb3{letter-spacing:31.689031px;}
.ls7c{letter-spacing:32.901031px;}
.ls4d{letter-spacing:33.309031px;}
.ls69{letter-spacing:36.526677px;}
.ls47{letter-spacing:40.677031px;}
.ls3c{letter-spacing:41.560851px;}
.lsa0{letter-spacing:42.481028px;}
.ls33{letter-spacing:47.228525px;}
.ls19{letter-spacing:57.020066px;}
.ls2e{letter-spacing:57.531031px;}
.ls9a{letter-spacing:64.401630px;}
.ls24{letter-spacing:74.859031px;}
.ls2a{letter-spacing:78.183031px;}
.ls30{letter-spacing:81.105031px;}
.ls52{letter-spacing:96.277345px;}
.ls3f{letter-spacing:133.966969px;}
.ls27{letter-spacing:146.774525px;}
.ls3e{letter-spacing:152.448193px;}
.ls1b{letter-spacing:249.320525px;}
.ls2f{letter-spacing:268.754525px;}
.ls34{letter-spacing:333.938338px;}
.ls3d{letter-spacing:355.741652px;}
.ls2c{letter-spacing:467.481031px;}
.ls29{letter-spacing:604.228246px;}
.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;}
}
.ws78{word-spacing:-63.643257px;}
.ws12b{word-spacing:-59.775600px;}
.ws165{word-spacing:-39.810710px;}
.ws10d{word-spacing:-39.663012px;}
.ws110{word-spacing:-39.639190px;}
.ws32{word-spacing:-38.937826px;}
.wsf2{word-spacing:-36.833424px;}
.ws160{word-spacing:-35.913325px;}
.ws136{word-spacing:-32.770923px;}
.ws50{word-spacing:-31.633157px;}
.wsf4{word-spacing:-31.082800px;}
.wscd{word-spacing:-27.876786px;}
.wsd0{word-spacing:-27.793406px;}
.ws139{word-spacing:-27.780822px;}
.ws16e{word-spacing:-21.648899px;}
.ws47{word-spacing:-17.932680px;}
.ws31{word-spacing:-16.605662px;}
.ws4{word-spacing:-14.943900px;}
.ws14{word-spacing:-14.920027px;}
.ws9{word-spacing:-13.449600px;}
.wsf7{word-spacing:-12.261460px;}
.ws164{word-spacing:-11.955168px;}
.ws43{word-spacing:-11.955150px;}
.ws111{word-spacing:-11.910814px;}
.ws74{word-spacing:-11.867738px;}
.wsf5{word-spacing:-11.188586px;}
.ws138{word-spacing:-10.909095px;}
.ws113{word-spacing:-10.868623px;}
.ws10f{word-spacing:-9.677537px;}
.wsd9{word-spacing:-9.564150px;}
.wsf3{word-spacing:-9.196095px;}
.ws137{word-spacing:-8.219178px;}
.ws8b{word-spacing:-6.682912px;}
.wsf1{word-spacing:-6.660140px;}
.ws17{word-spacing:-6.623136px;}
.ws12d{word-spacing:-1.075961px;}
.wsb6{word-spacing:-1.016185px;}
.ws23{word-spacing:-0.956410px;}
.ws1b0{word-spacing:-0.908591px;}
.ws35{word-spacing:-0.836858px;}
.ws6b{word-spacing:-0.680540px;}
.ws4a{word-spacing:-0.597756px;}
.ws11f{word-spacing:-0.537980px;}
.ws182{word-spacing:-0.537799px;}
.ws120{word-spacing:-0.519317px;}
.ws9c{word-spacing:-0.418429px;}
.ws64{word-spacing:-0.358654px;}
.ws9b{word-spacing:-0.298878px;}
.wsfc{word-spacing:-0.239102px;}
.wsef{word-spacing:-0.179327px;}
.wsee{word-spacing:-0.119551px;}
.wsca{word-spacing:-0.111174px;}
.ws5c{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws7c{word-spacing:-0.047821px;}
.ws4e{word-spacing:-0.041843px;}
.ws7a{word-spacing:-0.035866px;}
.wsce{word-spacing:-0.027793px;}
.wsd1{word-spacing:-0.019455px;}
.wsd8{word-spacing:-0.017831px;}
.ws58{word-spacing:0.000000px;}
.ws45{word-spacing:0.013463px;}
.ws3e{word-spacing:0.059776px;}
.wsa5{word-spacing:0.119551px;}
.ws4c{word-spacing:0.298878px;}
.ws135{word-spacing:0.326588px;}
.ws134{word-spacing:0.343276px;}
.wsa3{word-spacing:0.537980px;}
.wsfb{word-spacing:0.657532px;}
.ws4d{word-spacing:0.836858px;}
.ws6a{word-spacing:0.972781px;}
.ws33{word-spacing:1.016185px;}
.ws98{word-spacing:1.075961px;}
.wsa4{word-spacing:1.255288px;}
.ws34{word-spacing:1.374839px;}
.ws12{word-spacing:1.398758px;}
.wseb{word-spacing:1.434614px;}
.ws196{word-spacing:1.530259px;}
.ws22{word-spacing:1.673717px;}
.wsa7{word-spacing:1.733492px;}
.ws3c{word-spacing:1.793268px;}
.ws101{word-spacing:1.853044px;}
.ws1a6{word-spacing:1.865003px;}
.ws16a{word-spacing:2.024900px;}
.ws16b{word-spacing:2.032370px;}
.ws187{word-spacing:2.092146px;}
.ws1a{word-spacing:2.211697px;}
.ws10b{word-spacing:2.271473px;}
.wsb8{word-spacing:2.331248px;}
.ws52{word-spacing:2.391024px;}
.ws1a3{word-spacing:2.391030px;}
.ws3f{word-spacing:2.570351px;}
.ws1a5{word-spacing:2.725774px;}
.ws102{word-spacing:2.809453px;}
.ws146{word-spacing:2.816683px;}
.ws94{word-spacing:2.869229px;}
.ws1b6{word-spacing:2.964877px;}
.ws3b{word-spacing:2.988780px;}
.ws8e{word-spacing:3.108331px;}
.ws1ae{word-spacing:3.156160px;}
.ws179{word-spacing:3.168107px;}
.ws9a{word-spacing:3.287658px;}
.wsab{word-spacing:3.347434px;}
.ws2c{word-spacing:3.347442px;}
.wsaa{word-spacing:3.407209px;}
.wsac{word-spacing:3.466985px;}
.ws9f{word-spacing:3.526760px;}
.ws6d{word-spacing:3.586536px;}
.wse4{word-spacing:3.646312px;}
.ws4b{word-spacing:3.706087px;}
.ws26{word-spacing:3.825638px;}
.wsa6{word-spacing:3.945190px;}
.ws71{word-spacing:4.184134px;}
.ws73{word-spacing:4.184292px;}
.ws70{word-spacing:4.187083px;}
.ws5f{word-spacing:4.363619px;}
.ws12a{word-spacing:4.395042px;}
.ws169{word-spacing:4.495136px;}
.ws84{word-spacing:4.602721px;}
.ws17b{word-spacing:4.662497px;}
.ws17a{word-spacing:4.665850px;}
.ws4f{word-spacing:4.722272px;}
.wsd7{word-spacing:4.743818px;}
.wsd6{word-spacing:4.759969px;}
.wsd5{word-spacing:4.780496px;}
.ws2e{word-spacing:4.782060px;}
.ws13e{word-spacing:4.782077px;}
.wsfa{word-spacing:4.877701px;}
.ws16{word-spacing:4.961375px;}
.ws15c{word-spacing:5.140702px;}
.ws15b{word-spacing:5.168106px;}
.ws191{word-spacing:5.308087px;}
.ws19{word-spacing:5.320028px;}
.ws18{word-spacing:5.330683px;}
.ws16d{word-spacing:5.406421px;}
.ws21{word-spacing:5.439580px;}
.ws175{word-spacing:5.449974px;}
.ws27{word-spacing:5.499355px;}
.ws185{word-spacing:5.559131px;}
.ws184{word-spacing:5.568266px;}
.ws29{word-spacing:5.595010px;}
.ws13d{word-spacing:5.631904px;}
.ws13c{word-spacing:5.642831px;}
.ws42{word-spacing:5.678682px;}
.ws121{word-spacing:5.707500px;}
.ws122{word-spacing:5.714134px;}
.wsd2{word-spacing:5.735199px;}
.ws104{word-spacing:5.858009px;}
.ws18a{word-spacing:5.917784px;}
.ws44{word-spacing:5.925026px;}
.ws7f{word-spacing:5.925398px;}
.wsb9{word-spacing:5.929754px;}
.ws18b{word-spacing:5.936134px;}
.ws46{word-spacing:5.947621px;}
.wsba{word-spacing:5.950396px;}
.ws63{word-spacing:5.972982px;}
.wsc9{word-spacing:5.974892px;}
.ws188{word-spacing:5.976317px;}
.ws3{word-spacing:5.977560px;}
.ws195{word-spacing:5.977575px;}
.ws161{word-spacing:5.977584px;}
.ws162{word-spacing:5.977608px;}
.ws123{word-spacing:5.978134px;}
.ws66{word-spacing:5.978201px;}
.ws12e{word-spacing:5.978683px;}
.ws131{word-spacing:5.979042px;}
.wsf9{word-spacing:6.073216px;}
.ws163{word-spacing:6.085176px;}
.ws1b{word-spacing:6.097111px;}
.ws12c{word-spacing:6.156887px;}
.ws85{word-spacing:6.216662px;}
.wse{word-spacing:6.240614px;}
.ws2d{word-spacing:6.407960px;}
.ws17c{word-spacing:6.515540px;}
.ws54{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws55{word-spacing:6.694867px;}
.ws10{word-spacing:6.724800px;}
.ws25{word-spacing:6.754643px;}
.ws48{word-spacing:6.874194px;}
.ws168{word-spacing:7.023608px;}
.ws2a{word-spacing:7.029628px;}
.ws10e{word-spacing:7.040999px;}
.ws166{word-spacing:7.067219px;}
.ws69{word-spacing:7.113296px;}
.ws193{word-spacing:7.173090px;}
.wsd4{word-spacing:7.316552px;}
.ws5e{word-spacing:7.350803px;}
.ws5d{word-spacing:7.352399px;}
.ws90{word-spacing:7.412174px;}
.wsd{word-spacing:7.424179px;}
.ws2b{word-spacing:7.460014px;}
.ws5a{word-spacing:7.471950px;}
.ws39{word-spacing:7.494374px;}
.ws19a{word-spacing:7.507834px;}
.ws3a{word-spacing:7.531726px;}
.ws79{word-spacing:7.555655px;}
.ws7b{word-spacing:7.557904px;}
.wsb5{word-spacing:7.651277px;}
.ws53{word-spacing:7.770828px;}
.ws1a7{word-spacing:7.773097px;}
.ws1a9{word-spacing:7.794758px;}
.ws147{word-spacing:7.830604px;}
.ws6c{word-spacing:7.890379px;}
.ws1ab{word-spacing:7.890399px;}
.ws13f{word-spacing:7.938220px;}
.ws15{word-spacing:7.950155px;}
.wsbe{word-spacing:8.009930px;}
.ws18d{word-spacing:8.063801px;}
.ws41{word-spacing:8.069706px;}
.ws40{word-spacing:8.094317px;}
.ws7{word-spacing:8.177357px;}
.ws17d{word-spacing:8.189257px;}
.ws11c{word-spacing:8.246134px;}
.ws11a{word-spacing:8.249033px;}
.ws132{word-spacing:8.256367px;}
.wsa{word-spacing:8.338752px;}
.ws9d{word-spacing:8.368584px;}
.wsdc{word-spacing:8.416426px;}
.wsa8{word-spacing:8.428360px;}
.wsb7{word-spacing:8.488135px;}
.ws125{word-spacing:8.547911px;}
.ws126{word-spacing:8.607686px;}
.ws1a2{word-spacing:8.655529px;}
.wsbf{word-spacing:8.727238px;}
.ws6{word-spacing:8.769139px;}
.wsff{word-spacing:8.787013px;}
.wsfd{word-spacing:8.793025px;}
.ws109{word-spacing:8.846789px;}
.ws176{word-spacing:8.846811px;}
.ws107{word-spacing:8.854364px;}
.ws108{word-spacing:8.855236px;}
.ws116{word-spacing:8.990273px;}
.ws37{word-spacing:9.145667px;}
.ws192{word-spacing:9.229376px;}
.wsec{word-spacing:9.265218px;}
.ws95{word-spacing:9.384769px;}
.ws17e{word-spacing:9.444545px;}
.wsb0{word-spacing:9.504320px;}
.wsd3{word-spacing:9.659761px;}
.ws2f{word-spacing:9.683647px;}
.ws178{word-spacing:9.707582px;}
.ws177{word-spacing:9.712496px;}
.ws86{word-spacing:9.803198px;}
.wsbd{word-spacing:10.102076px;}
.ws49{word-spacing:10.341179px;}
.ws186{word-spacing:10.400954px;}
.ws14d{word-spacing:10.460730px;}
.ws1e{word-spacing:10.580281px;}
.ws30{word-spacing:10.640057px;}
.ws19e{word-spacing:10.711814px;}
.wscf{word-spacing:10.783842px;}
.wsc3{word-spacing:10.810246px;}
.wsc5{word-spacing:10.819384px;}
.ws3d{word-spacing:10.879159px;}
.ws156{word-spacing:11.058486px;}
.ws99{word-spacing:11.118262px;}
.ws14e{word-spacing:11.178037px;}
.ws152{word-spacing:11.211266px;}
.ws154{word-spacing:11.237813px;}
.ws6f{word-spacing:11.297588px;}
.ws181{word-spacing:11.357364px;}
.ws60{word-spacing:11.417140px;}
.ws15a{word-spacing:11.476915px;}
.ws17f{word-spacing:11.499025px;}
.ws8{word-spacing:11.566656px;}
.wse9{word-spacing:11.656242px;}
.ws129{word-spacing:11.660134px;}
.wse7{word-spacing:11.680309px;}
.ws128{word-spacing:11.775793px;}
.ws148{word-spacing:11.835569px;}
.ws8f{word-spacing:11.895344px;}
.ws1b3{word-spacing:11.950249px;}
.ws198{word-spacing:11.952904px;}
.ws7e{word-spacing:11.955120px;}
.wse2{word-spacing:12.014896px;}
.ws10a{word-spacing:12.074671px;}
.ws5b{word-spacing:12.098612px;}
.wsa1{word-spacing:12.134447px;}
.wsf{word-spacing:12.158438px;}
.ws150{word-spacing:12.194222px;}
.wsb{word-spacing:12.212237px;}
.ws1aa{word-spacing:12.242074px;}
.ws24{word-spacing:12.253998px;}
.ws93{word-spacing:12.313774px;}
.ws96{word-spacing:12.433325px;}
.wse3{word-spacing:12.612652px;}
.ws127{word-spacing:12.732203px;}
.ws38{word-spacing:12.791978px;}
.wsad{word-spacing:12.911530px;}
.wsbc{word-spacing:13.090856px;}
.ws19f{word-spacing:13.246306px;}
.ws15d{word-spacing:13.329959px;}
.wsa0{word-spacing:13.509286px;}
.ws57{word-spacing:13.569061px;}
.wsc{word-spacing:13.610995px;}
.ws1b7{word-spacing:13.676692px;}
.ws115{word-spacing:13.724512px;}
.ws87{word-spacing:13.987490px;}
.wsdd{word-spacing:14.059256px;}
.ws1a4{word-spacing:14.298359px;}
.ws0{word-spacing:14.346180px;}
.ws1f{word-spacing:14.405920px;}
.ws130{word-spacing:14.465695px;}
.wsa9{word-spacing:14.525471px;}
.ws158{word-spacing:14.585246px;}
.ws11{word-spacing:14.740762px;}
.ws20{word-spacing:15.003676px;}
.ws61{word-spacing:15.063451px;}
.wsc2{word-spacing:15.123227px;}
.ws16f{word-spacing:15.240816px;}
.ws105{word-spacing:15.302554px;}
.ws18c{word-spacing:15.362329px;}
.ws83{word-spacing:15.401100px;}
.ws1c{word-spacing:15.481880px;}
.wsc8{word-spacing:15.661207px;}
.ws11d{word-spacing:15.956999px;}
.ws11e{word-spacing:15.960085px;}
.ws117{word-spacing:15.997702px;}
.ws119{word-spacing:16.019861px;}
.ws10c{word-spacing:16.079636px;}
.wse5{word-spacing:16.229250px;}
.wse6{word-spacing:16.231525px;}
.ws92{word-spacing:16.617617px;}
.ws159{word-spacing:16.737168px;}
.wsc7{word-spacing:16.796944px;}
.ws14b{word-spacing:16.976270px;}
.wsaf{word-spacing:17.036046px;}
.wsde{word-spacing:17.063553px;}
.wsdb{word-spacing:17.069553px;}
.ws12f{word-spacing:17.095822px;}
.ws1ad{word-spacing:17.215416px;}
.ws1a0{word-spacing:17.502340px;}
.ws65{word-spacing:17.549876px;}
.wsdf{word-spacing:17.649717px;}
.wsc0{word-spacing:17.753353px;}
.wsa2{word-spacing:17.813129px;}
.ws51{word-spacing:17.872904px;}
.ws13{word-spacing:17.932680px;}
.ws15e{word-spacing:17.992456px;}
.ws183{word-spacing:18.112007px;}
.ws97{word-spacing:18.231558px;}
.wsbb{word-spacing:18.351109px;}
.ws1d{word-spacing:18.530436px;}
.ws189{word-spacing:18.829314px;}
.ws157{word-spacing:19.247743px;}
.wsf0{word-spacing:19.542647px;}
.ws68{word-spacing:19.552226px;}
.ws67{word-spacing:19.555379px;}
.ws8a{word-spacing:19.558717px;}
.ws194{word-spacing:19.654267px;}
.ws8d{word-spacing:19.666172px;}
.ws1a8{word-spacing:19.702087px;}
.ws1ac{word-spacing:19.845549px;}
.ws16c{word-spacing:20.084602px;}
.ws56{word-spacing:20.204153px;}
.ws62{word-spacing:20.263928px;}
.ws82{word-spacing:20.323704px;}
.ws19d{word-spacing:20.419396px;}
.ws19b{word-spacing:20.424713px;}
.ws14a{word-spacing:20.455210px;}
.wsb1{word-spacing:20.742133px;}
.ws2{word-spacing:20.861684px;}
.ws88{word-spacing:20.981236px;}
.ws36{word-spacing:21.160562px;}
.ws91{word-spacing:21.220338px;}
.ws6e{word-spacing:21.491876px;}
.ws72{word-spacing:22.073876px;}
.ws14f{word-spacing:22.116972px;}
.ws7d{word-spacing:22.466723px;}
.ws171{word-spacing:22.535117px;}
.wsb4{word-spacing:22.774504px;}
.ws28{word-spacing:23.479915px;}
.ws124{word-spacing:23.875659px;}
.ws199{word-spacing:24.149403px;}
.ws100{word-spacing:24.760220px;}
.wsfe{word-spacing:24.763525px;}
.ws155{word-spacing:25.344854px;}
.ws140{word-spacing:25.643732px;}
.ws89{word-spacing:25.703508px;}
.ws103{word-spacing:25.823059px;}
.ws11b{word-spacing:26.144724px;}
.ws133{word-spacing:26.171166px;}
.ws9e{word-spacing:26.282499px;}
.ws1b4{word-spacing:27.927230px;}
.wsc4{word-spacing:28.711890px;}
.ws153{word-spacing:29.101995px;}
.ws180{word-spacing:29.399615px;}
.ws1a1{word-spacing:29.409669px;}
.ws145{word-spacing:29.525166px;}
.wse8{word-spacing:29.581525px;}
.wsea{word-spacing:29.581890px;}
.ws170{word-spacing:29.829418px;}
.ws81{word-spacing:29.833508px;}
.ws151{word-spacing:30.071876px;}
.ws1af{word-spacing:30.987749px;}
.ws1bd{word-spacing:31.561596px;}
.ws8c{word-spacing:32.215379px;}
.ws19c{word-spacing:32.326726px;}
.wsc1{word-spacing:32.987250px;}
.ws106{word-spacing:33.196220px;}
.ws141{word-spacing:33.632944px;}
.ws143{word-spacing:33.644683px;}
.ws144{word-spacing:33.653663px;}
.ws118{word-spacing:33.908724px;}
.wsc6{word-spacing:34.687890px;}
.wsae{word-spacing:36.032008px;}
.wsb2{word-spacing:36.116366px;}
.wsb3{word-spacing:37.701208px;}
.ws197{word-spacing:38.017377px;}
.ws14c{word-spacing:39.985248px;}
.ws149{word-spacing:39.985525px;}
.ws80{word-spacing:41.723369px;}
.wscb{word-spacing:44.980690px;}
.ws1bb{word-spacing:46.816367px;}
.ws142{word-spacing:51.533166px;}
.ws15f{word-spacing:56.677778px;}
.ws76{word-spacing:57.101000px;}
.ws1bc{word-spacing:58.819338px;}
.ws1ba{word-spacing:61.736395px;}
.ws18e{word-spacing:69.196408px;}
.ws1b9{word-spacing:70.057179px;}
.ws172{word-spacing:71.163793px;}
.ws18f{word-spacing:78.856169px;}
.ws1b8{word-spacing:84.212077px;}
.ws167{word-spacing:86.762457px;}
.ws112{word-spacing:87.060073px;}
.ws1b1{word-spacing:89.281060px;}
.ws59{word-spacing:101.798558px;}
.ws190{word-spacing:106.496476px;}
.wsf6{word-spacing:117.015015px;}
.ws1b5{word-spacing:117.112649px;}
.ws77{word-spacing:138.464606px;}
.ws173{word-spacing:168.421144px;}
.ws13a{word-spacing:193.413657px;}
.ws1b2{word-spacing:198.216387px;}
.ws13b{word-spacing:218.615306px;}
.ws75{word-spacing:222.126141px;}
.wscc{word-spacing:237.241640px;}
.ws174{word-spacing:241.364157px;}
.wse0{word-spacing:244.785977px;}
.wsf8{word-spacing:280.113028px;}
.wse1{word-spacing:336.433550px;}
.wsda{word-spacing:368.888108px;}
.wsed{word-spacing:463.440227px;}
.ws114{word-spacing:618.435670px;}
._3{margin-left:-7.298627px;}
._4{margin-left:-5.977560px;}
._2{margin-left:-4.782048px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._8{margin-left:-1.075968px;}
._12{width:1.049395px;}
._5{width:2.617997px;}
._b{width:3.732084px;}
._22{width:4.920281px;}
._23{width:6.055912px;}
._14{width:13.090862px;}
._19{width:14.107077px;}
._10{width:17.011234px;}
._9{width:18.889090px;}
._27{width:19.905280px;}
._28{width:21.280119px;}
._c{width:22.535407px;}
._a{width:23.611362px;}
._6{width:24.639667px;}
._7{width:26.038426px;}
._1f{width:27.612145px;}
._f{width:29.887800px;}
._e{width:31.023542px;}
._21{width:33.474420px;}
._20{width:36.056732px;}
._25{width:37.932051px;}
._11{width:39.021610px;}
._26{width:41.556101px;}
._16{width:43.229822px;}
._d{width:48.155344px;}
._24{width:51.407145px;}
._13{width:70.573508px;}
._18{width:82.005977px;}
._1a{width:116.634443px;}
._17{width:118.786370px;}
._15{width:132.663625px;}
._1e{width:136.500285px;}
._1c{width:178.896865px;}
._1b{width:196.177385px;}
._1d{width:332.760292px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:19.455329px;}
.fsb{font-size:27.793406px;}
.fs19{font-size:32.876712px;}
.fs16{font-size:35.732443px;}
.fs1c{font-size:35.865504px;}
.fsa{font-size:35.865600px;}
.fs10{font-size:36.784379px;}
.fsd{font-size:38.256600px;}
.fs15{font-size:38.710147px;}
.fs7{font-size:40.229619px;}
.fs5{font-size:41.842800px;}
.fs1b{font-size:41.843088px;}
.fs14{font-size:43.474491px;}
.fs18{font-size:43.636382px;}
.fs11{font-size:44.754346px;}
.fs12{font-size:47.643258px;}
.fs4{font-size:47.820600px;}
.fs17{font-size:47.820672px;}
.fse{font-size:49.045838px;}
.fs3{font-size:53.798400px;}
.fs9{font-size:56.321221px;}
.fs13{font-size:59.554072px;}
.fs2{font-size:59.775600px;}
.fs1a{font-size:59.775841px;}
.fs6{font-size:60.344428px;}
.fsf{font-size:61.307298px;}
.fs1{font-size:65.753400px;}
.fs8{font-size:80.459238px;}
.fs0{font-size:143.461800px;}
.yf0{bottom:-139.763631px;}
.y0{bottom:0.000000px;}
.yee{bottom:5.063222px;}
.yed{bottom:10.211140px;}
.y98{bottom:10.927920px;}
.y92{bottom:12.298853px;}
.y120{bottom:14.402614px;}
.y17f{bottom:15.449579px;}
.y14a{bottom:19.370704px;}
.y1c1{bottom:19.442837px;}
.y1a7{bottom:20.849579px;}
.y95{bottom:29.284878px;}
.y11f{bottom:33.738909px;}
.y17e{bottom:34.609207px;}
.yeb{bottom:35.916270px;}
.y97{bottom:37.591982px;}
.y149{bottom:38.154032px;}
.y1c0{bottom:38.296111px;}
.y1a6{bottom:39.538469px;}
.y96{bottom:40.211340px;}
.y121{bottom:48.716657px;}
.y180{bottom:49.212811px;}
.y1e4{bottom:52.899714px;}
.y1a8{bottom:54.142072px;}
.y94{bottom:56.160155px;}
.y14f{bottom:58.720783px;}
.y14e{bottom:60.252158px;}
.y188{bottom:63.399279px;}
.y125{bottom:66.698177px;}
.y187{bottom:67.170887px;}
.y122{bottom:67.453504px;}
.y14d{bottom:71.924910px;}
.y1c2{bottom:72.889581px;}
.y185{bottom:74.253399px;}
.y93{bottom:74.297910px;}
.y184{bottom:74.425240px;}
.y1c7{bottom:75.123071px;}
.y181{bottom:75.994492px;}
.y1c4{bottom:76.758194px;}
.y1ec{bottom:78.226899px;}
.y14b{bottom:80.399086px;}
.yef{bottom:81.965917px;}
.y1e5{bottom:83.148471px;}
.y123{bottom:86.190352px;}
.y8e{bottom:88.862922px;}
.y1a9{bottom:93.000812px;}
.y1e8{bottom:93.049021px;}
.y1c6{bottom:96.935541px;}
.y1eb{bottom:99.469736px;}
.y186{bottom:100.637894px;}
.y182{bottom:102.776174px;}
.y124{bottom:104.927200px;}
.y91{bottom:104.976701px;}
.y14c{bottom:111.026581px;}
.y90{bottom:111.620754px;}
.y54{bottom:113.332500px;}
.y1e6{bottom:113.397227px;}
.y252{bottom:116.226000px;}
.yec{bottom:116.235194px;}
.y1ad{bottom:117.541999px;}
.y1c5{bottom:118.178378px;}
.y87{bottom:120.543000px;}
.y1ea{bottom:121.282206px;}
.y1c3{bottom:127.721477px;}
.y183{bottom:129.557856px;}
.y251{bottom:129.675000px;}
.y53{bottom:131.265000px;}
.yb8{bottom:131.266500px;}
.y1aa{bottom:131.859553px;}
.ye7{bottom:134.084143px;}
.y8f{bottom:134.378586px;}
.y113{bottom:137.780130px;}
.y86{bottom:138.475500px;}
.y1e9{bottom:142.525043px;}
.y250{bottom:143.125500px;}
.y1e7{bottom:143.645983px;}
.y20d{bottom:148.918500px;}
.y89{bottom:148.943599px;}
.y52{bottom:149.197500px;}
.yb7{bottom:149.199000px;}
.y11c{bottom:150.732730px;}
.y1b0{bottom:155.790993px;}
.y85{bottom:156.409500px;}
.y175{bottom:156.559323px;}
.y24f{bottom:156.574500px;}
.yea{bottom:156.776649px;}
.y114{bottom:159.639786px;}
.y11e{bottom:159.744884px;}
.y8c{bottom:160.040061px;}
.y8d{bottom:162.313734px;}
.y141{bottom:163.451176px;}
.y20c{bottom:166.851000px;}
.y51{bottom:167.131500px;}
.y1d5{bottom:167.257500px;}
.y11b{bottom:168.220455px;}
.y2e{bottom:168.861000px;}
.y24e{bottom:170.023500px;}
.y148{bottom:170.062898px;}
.y147{bottom:170.237487px;}
.y146{bottom:170.376939px;}
.y145{bottom:170.483879px;}
.y1ab{bottom:170.718293px;}
.y1bb{bottom:170.984023px;}
.y17d{bottom:171.851288px;}
.y179{bottom:172.190548px;}
.y1af{bottom:172.785253px;}
.y84{bottom:174.342000px;}
.ye9{bottom:174.563348px;}
.y8a{bottom:179.790007px;}
.y115{bottom:181.499441px;}
.y11d{bottom:181.531962px;}
.y17a{bottom:181.845382px;}
.y17c{bottom:182.106198px;}
.y2d{bottom:182.311500px;}
.y176{bottom:183.341005px;}
.y24d{bottom:183.474000px;}
.y144{bottom:184.227592px;}
.y1bd{bottom:184.405361px;}
.y20b{bottom:184.785000px;}
.y1b2{bottom:184.855189px;}
.y50{bottom:185.064000px;}
.y111{bottom:185.103000px;}
.y1d4{bottom:185.190000px;}
.y1a4{bottom:188.727000px;}
.y1d7{bottom:189.230414px;}
.y1ae{bottom:189.779513px;}
.y11a{bottom:191.272103px;}
.y83{bottom:192.274500px;}
.y1bf{bottom:193.049063px;}
.y8b{bottom:194.961895px;}
.y2c{bottom:195.760500px;}
.y24c{bottom:196.923000px;}
.y1b1{bottom:197.298098px;}
.y142{bottom:201.439315px;}
.y20a{bottom:202.717500px;}
.y4f{bottom:202.996500px;}
.y110{bottom:203.035500px;}
.y1d3{bottom:203.122500px;}
.y116{bottom:203.359097px;}
.y1a3{bottom:206.661000px;}
.y16a{bottom:208.782000px;}
.y2b{bottom:209.209500px;}
.y1ac{bottom:209.577033px;}
.y177{bottom:210.122686px;}
.y82{bottom:210.207000px;}
.y24b{bottom:210.372000px;}
.y1be{bottom:214.861533px;}
.y17b{bottom:217.639241px;}
.y1db{bottom:219.457525px;}
.y1dc{bottom:220.349338px;}
.y209{bottom:220.650000px;}
.ye8{bottom:220.866952px;}
.y4e{bottom:220.929000px;}
.yb6{bottom:220.930500px;}
.y10f{bottom:220.968000px;}
.y2a{bottom:222.660000px;}
.y24a{bottom:223.822500px;}
.y1d2{bottom:224.311500px;}
.y1a2{bottom:224.593500px;}
.y1bc{bottom:224.669751px;}
.y117{bottom:225.218752px;}
.y1d8{bottom:227.041360px;}
.y169{bottom:232.500000px;}
.y81{bottom:233.442000px;}
.y29{bottom:236.109000px;}
.y178{bottom:236.904368px;}
.y249{bottom:237.271500px;}
.y4d{bottom:238.861500px;}
.yb5{bottom:238.863000px;}
.y143{bottom:239.427454px;}
.y208{bottom:240.670500px;}
.y1d1{bottom:242.244000px;}
.y1a1{bottom:242.526000px;}
.y10e{bottom:243.744000px;}
.y136{bottom:245.472000px;}
.y1e3{bottom:246.399794px;}
.y118{bottom:247.078408px;}
.y1e1{bottom:247.856155px;}
.y28{bottom:249.558000px;}
.y168{bottom:250.434000px;}
.y248{bottom:250.720500px;}
.y80{bottom:253.803000px;}
.y4c{bottom:256.795500px;}
.y1e2{bottom:257.443357px;}
.ye5{bottom:257.589000px;}
.y207{bottom:258.603000px;}
.y1e0{bottom:258.899718px;}
.y1d0{bottom:260.176500px;}
.y1a0{bottom:260.458500px;}
.y135{bottom:263.404500px;}
.y16c{bottom:263.905835px;}
.y247{bottom:264.171000px;}
.y1d9{bottom:264.852305px;}
.y10d{bottom:266.616000px;}
.y167{bottom:268.366500px;}
.y1dd{bottom:268.802237px;}
.y119{bottom:268.938063px;}
.y138{bottom:271.180325px;}
.y4b{bottom:274.728000px;}
.y1df{bottom:274.734209px;}
.ye4{bottom:275.521500px;}
.y246{bottom:277.620000px;}
.y1cf{bottom:278.110500px;}
.y19f{bottom:278.391000px;}
.y206{bottom:278.625000px;}
.y27{bottom:279.135000px;}
.y174{bottom:279.197800px;}
.y170{bottom:279.537060px;}
.y7f{bottom:281.229000px;}
.y173{bottom:282.969408px;}
.y1b5{bottom:283.467319px;}
.y126{bottom:284.331149px;}
.y1de{bottom:285.777772px;}
.y166{bottom:286.299000px;}
.y171{bottom:289.191894px;}
.y16d{bottom:290.604224px;}
.y13a{bottom:290.670123px;}
.y245{bottom:291.070500px;}
.y4a{bottom:292.660500px;}
.ye3{bottom:293.454000px;}
.y1ce{bottom:296.043000px;}
.y134{bottom:296.044500px;}
.y205{bottom:296.557500px;}
.y26{bottom:297.067500px;}
.y7e{bottom:299.161500px;}
.y1b8{bottom:300.464412px;}
.y19e{bottom:302.151000px;}
.y1da{bottom:302.663251px;}
.y165{bottom:304.231500px;}
.y244{bottom:304.519500px;}
.y1b6{bottom:308.276463px;}
.y10c{bottom:310.096500px;}
.y49{bottom:310.593000px;}
.y140{bottom:311.193146px;}
.ye2{bottom:311.386500px;}
.y1ba{bottom:311.782338px;}
.y1cd{bottom:313.975500px;}
.y133{bottom:313.978500px;}
.y204{bottom:314.490000px;}
.y25{bottom:315.000000px;}
.y16e{bottom:317.302613px;}
.y13b{bottom:317.358210px;}
.y139{bottom:317.703646px;}
.y243{bottom:317.968500px;}
.y19d{bottom:320.083500px;}
.y7d{bottom:321.400500px;}
.y164{bottom:322.164000px;}
.y13c{bottom:324.190606px;}
.y172{bottom:324.985753px;}
.y13d{bottom:325.604468px;}
.y48{bottom:328.525500px;}
.yb4{bottom:329.035500px;}
.ye1{bottom:329.319000px;}
.y13e{bottom:331.035844px;}
.y242{bottom:331.419000px;}
.y7b{bottom:331.651500px;}
.y1cc{bottom:331.908000px;}
.y132{bottom:331.911000px;}
.y13f{bottom:332.357172px;}
.y203{bottom:332.422500px;}
.y24{bottom:332.932500px;}
.y1b7{bottom:333.085607px;}
.y1b9{bottom:333.594808px;}
.y10b{bottom:333.844500px;}
.y7c{bottom:341.760000px;}
.y16f{bottom:344.001001px;}
.y241{bottom:344.868000px;}
.y163{bottom:345.882000px;}
.y47{bottom:346.458000px;}
.yb3{bottom:346.968000px;}
.ye0{bottom:348.046500px;}
.y1cb{bottom:349.840500px;}
.y131{bottom:349.843500px;}
.y202{bottom:350.356500px;}
.y19c{bottom:350.821500px;}
.y23{bottom:351.580500px;}
.y10a{bottom:351.777000px;}
.y240{bottom:358.317000px;}
.y162{bottom:363.816000px;}
.y46{bottom:364.392000px;}
.yb2{bottom:364.900500px;}
.ydf{bottom:365.979000px;}
.y7a{bottom:367.401000px;}
.y1ca{bottom:367.773000px;}
.y130{bottom:367.776000px;}
.y201{bottom:368.289000px;}
.y19b{bottom:368.754000px;}
.y22{bottom:369.513000px;}
.y109{bottom:369.709500px;}
.y23f{bottom:371.767500px;}
.y161{bottom:381.748500px;}
.y23e{bottom:385.216500px;}
.y79{bottom:385.333500px;}
.y12f{bottom:385.708500px;}
.y200{bottom:386.221500px;}
.y19a{bottom:386.686500px;}
.yb1{bottom:386.898000px;}
.y45{bottom:387.364500px;}
.y21{bottom:387.445500px;}
.y108{bottom:387.681000px;}
.yde{bottom:393.381000px;}
.y23d{bottom:398.667000px;}
.y160{bottom:399.681000px;}
.y12e{bottom:403.641000px;}
.y199{bottom:404.619000px;}
.yb0{bottom:404.830500px;}
.y44{bottom:405.297000px;}
.y20{bottom:405.378000px;}
.y107{bottom:405.613500px;}
.y78{bottom:407.551500px;}
.y1ff{bottom:408.582000px;}
.y23c{bottom:412.116000px;}
.y1c9{bottom:413.976000px;}
.y15f{bottom:417.613500px;}
.y12d{bottom:422.118000px;}
.y198{bottom:422.553000px;}
.yaf{bottom:422.763000px;}
.y43{bottom:423.229500px;}
.y1f{bottom:423.312000px;}
.y23b{bottom:425.565000px;}
.y1c8{bottom:427.426500px;}
.y77{bottom:427.912500px;}
.ydd{bottom:428.148000px;}
.y106{bottom:428.326500px;}
.y1fe{bottom:434.925000px;}
.y15e{bottom:435.546000px;}
.y105{bottom:438.577500px;}
.y23a{bottom:439.015500px;}
.y12c{bottom:440.050500px;}
.y197{bottom:440.485500px;}
.yae{bottom:440.697000px;}
.y42{bottom:441.162000px;}
.y1e{bottom:441.244500px;}
.ydc{bottom:446.080500px;}
.y239{bottom:452.464500px;}
.y1fd{bottom:452.857500px;}
.y15d{bottom:453.480000px;}
.y76{bottom:453.552000px;}
.y1b4{bottom:454.324500px;}
.y12b{bottom:457.983000px;}
.y196{bottom:458.418000px;}
.yad{bottom:458.629500px;}
.y41{bottom:459.094500px;}
.y1d{bottom:459.177000px;}
.ydb{bottom:464.013000px;}
.y238{bottom:465.915000px;}
.y1fc{bottom:470.790000px;}
.y104{bottom:470.898000px;}
.y15c{bottom:471.412500px;}
.y75{bottom:471.484500px;}
.y195{bottom:476.350500px;}
.yac{bottom:476.562000px;}
.y1c{bottom:477.109500px;}
.y237{bottom:479.364000px;}
.yda{bottom:481.947000px;}
.y40{bottom:487.564500px;}
.y1fb{bottom:488.722500px;}
.y103{bottom:488.830500px;}
.y15b{bottom:489.345000px;}
.y236{bottom:492.813000px;}
.y194{bottom:494.283000px;}
.yab{bottom:494.494500px;}
.y1b{bottom:495.042000px;}
.yd9{bottom:499.879500px;}
.y74{bottom:501.444000px;}
.y235{bottom:506.263500px;}
.y1fa{bottom:506.656500px;}
.y102{bottom:506.764500px;}
.y15a{bottom:507.277500px;}
.y12a{bottom:507.750000px;}
.y193{bottom:512.215500px;}
.y1a{bottom:513.690000px;}
.yaa{bottom:516.492000px;}
.yd8{bottom:517.812000px;}
.y234{bottom:519.712500px;}
.y3f{bottom:523.843500px;}
.y1f9{bottom:524.589000px;}
.y101{bottom:524.697000px;}
.y73{bottom:525.205500px;}
.y159{bottom:526.534500px;}
.y192{bottom:530.149500px;}
.y19{bottom:531.622500px;}
.y233{bottom:533.161500px;}
.y71{bottom:535.456500px;}
.yd7{bottom:536.538000px;}
.ya9{bottom:538.488000px;}
.y3e{bottom:541.776000px;}
.y1f8{bottom:542.521500px;}
.y100{bottom:542.629500px;}
.y158{bottom:544.468500px;}
.y72{bottom:545.565000px;}
.y232{bottom:546.612000px;}
.y191{bottom:548.082000px;}
.y18{bottom:549.555000px;}
.yd6{bottom:554.470500px;}
.ya8{bottom:556.420500px;}
.y3d{bottom:559.708500px;}
.y231{bottom:560.061000px;}
.y1f7{bottom:560.454000px;}
.y157{bottom:562.401000px;}
.y190{bottom:566.334000px;}
.y17{bottom:567.489000px;}
.y70{bottom:571.206000px;}
.yd5{bottom:572.404500px;}
.y230{bottom:573.511500px;}
.ya7{bottom:574.353000px;}
.y3c{bottom:577.641000px;}
.y1f6{bottom:578.386500px;}
.y156{bottom:580.333500px;}
.y18f{bottom:584.266500px;}
.y16{bottom:585.421500px;}
.y22f{bottom:586.960500px;}
.y6f{bottom:589.138500px;}
.yd4{bottom:590.337000px;}
.yff{bottom:593.094000px;}
.y1f5{bottom:596.320500px;}
.ya6{bottom:596.350500px;}
.y3b{bottom:596.545500px;}
.y155{bottom:598.266000px;}
.y22e{bottom:600.409500px;}
.y15{bottom:603.354000px;}
.y18e{bottom:605.863500px;}
.yfe{bottom:606.543000px;}
.y6e{bottom:607.071000px;}
.yd3{bottom:608.269500px;}
.y22d{bottom:613.860000px;}
.y1f4{bottom:614.253000px;}
.ya5{bottom:614.283000px;}
.y3a{bottom:614.478000px;}
.y154{bottom:616.198500px;}
.yfd{bottom:619.993500px;}
.y18d{bottom:623.796000px;}
.yd2{bottom:626.202000px;}
.y22c{bottom:627.309000px;}
.y6d{bottom:628.914000px;}
.y14{bottom:630.283500px;}
.y1f3{bottom:632.185500px;}
.ya4{bottom:632.215500px;}
.y39{bottom:632.412000px;}
.yfc{bottom:633.442500px;}
.y153{bottom:634.131000px;}
.y22b{bottom:640.758000px;}
.y18c{bottom:641.728500px;}
.yd1{bottom:644.134500px;}
.y6c{bottom:646.846500px;}
.yfb{bottom:646.891500px;}
.y1f2{bottom:650.118000px;}
.ya3{bottom:650.148000px;}
.y38{bottom:650.344500px;}
.y22a{bottom:654.208500px;}
.y18b{bottom:659.662500px;}
.yfa{bottom:660.342000px;}
.yd0{bottom:662.068500px;}
.yf9{bottom:666.768000px;}
.y229{bottom:667.657500px;}
.y1f1{bottom:668.050500px;}
.ya2{bottom:668.082000px;}
.y37{bottom:668.277000px;}
.y13{bottom:668.533500px;}
.y6b{bottom:668.689500px;}
.ycf{bottom:680.001000px;}
.y228{bottom:681.108000px;}
.y12{bottom:683.478000px;}
.y152{bottom:685.981500px;}
.y1f0{bottom:685.983000px;}
.ya1{bottom:686.014500px;}
.y36{bottom:686.209500px;}
.y6a{bottom:686.622000px;}
.yf8{bottom:687.241500px;}
.yf7{bottom:693.666000px;}
.y227{bottom:694.557000px;}
.yce{bottom:697.933500px;}
.y151{bottom:699.430500px;}
.y35{bottom:704.142000px;}
.ya0{bottom:704.455500px;}
.y69{bottom:704.554500px;}
.y226{bottom:708.006000px;}
.y18a{bottom:708.831000px;}
.y150{bottom:712.881000px;}
.y11{bottom:714.079500px;}
.yf6{bottom:714.738000px;}
.ycd{bottom:715.866000px;}
.y225{bottom:721.456500px;}
.y34{bottom:722.074500px;}
.y189{bottom:722.281500px;}
.y9f{bottom:722.389500px;}
.y68{bottom:722.487000px;}
.y10{bottom:729.024000px;}
.y1ef{bottom:731.319000px;}
.ycc{bottom:733.798500px;}
.y224{bottom:734.905500px;}
.y137{bottom:739.779000px;}
.y33{bottom:740.008500px;}
.y9e{bottom:740.322000px;}
.y67{bottom:740.421000px;}
.yf5{bottom:742.132500px;}
.yf{bottom:743.968500px;}
.y1ee{bottom:744.769500px;}
.y129{bottom:746.059500px;}
.y223{bottom:748.354500px;}
.y16b{bottom:749.179500px;}
.yf4{bottom:755.583000px;}
.y1ed{bottom:758.218500px;}
.y9d{bottom:758.254500px;}
.y66{bottom:758.353500px;}
.ye{bottom:758.911500px;}
.ycb{bottom:759.217500px;}
.y128{bottom:759.508500px;}
.y222{bottom:761.805000px;}
.y127{bottom:772.959000px;}
.yd{bottom:773.856000px;}
.y221{bottom:775.254000px;}
.y65{bottom:776.286000px;}
.y32{bottom:776.845500px;}
.y9c{bottom:782.677500px;}
.y1d6{bottom:785.118000px;}
.y220{bottom:788.703000px;}
.yc{bottom:788.800500px;}
.yf3{bottom:791.850000px;}
.yca{bottom:793.984500px;}
.y64{bottom:794.218500px;}
.y31{bottom:794.778000px;}
.y112{bottom:799.857000px;}
.y21f{bottom:802.153500px;}
.yb{bottom:803.743500px;}
.yf2{bottom:805.299000px;}
.y9b{bottom:808.372500px;}
.yc9{bottom:811.917000px;}
.y30{bottom:812.710500px;}
.y21e{bottom:815.602500px;}
.ya{bottom:818.688000px;}
.yf1{bottom:818.749500px;}
.y21d{bottom:829.051500px;}
.yc8{bottom:829.849500px;}
.y2f{bottom:830.643000px;}
.y9{bottom:833.632500px;}
.y63{bottom:841.248000px;}
.y21c{bottom:842.502000px;}
.ye6{bottom:845.647500px;}
.yc7{bottom:847.782000px;}
.y8{bottom:848.575500px;}
.y1b3{bottom:851.667000px;}
.y62{bottom:854.698500px;}
.y21b{bottom:855.951000px;}
.y9a{bottom:858.048000px;}
.yc6{bottom:865.714500px;}
.y21a{bottom:869.401500px;}
.y99{bottom:871.497000px;}
.y1a5{bottom:878.566500px;}
.y219{bottom:882.850500px;}
.yc5{bottom:883.647000px;}
.y218{bottom:896.299500px;}
.y88{bottom:898.396500px;}
.y5f{bottom:899.956500px;}
.yc4{bottom:901.581000px;}
.y217{bottom:909.750000px;}
.y7{bottom:918.042000px;}
.yc3{bottom:920.307000px;}
.y5d{bottom:921.556500px;}
.y216{bottom:923.199000px;}
.y6{bottom:936.534000px;}
.y215{bottom:936.648000px;}
.yc2{bottom:938.239500px;}
.y214{bottom:950.098500px;}
.y59{bottom:951.690000px;}
.y5{bottom:955.027500px;}
.yc1{bottom:956.172000px;}
.y213{bottom:963.547500px;}
.y5e{bottom:963.736500px;}
.y5a{bottom:968.410500px;}
.y4{bottom:973.521000px;}
.yc0{bottom:974.104500px;}
.y212{bottom:985.653000px;}
.y55{bottom:986.971500px;}
.ybf{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y5b{bottom:1000.294500px;}
.ybe{bottom:1009.971000px;}
.y211{bottom:1013.412000px;}
.y60{bottom:1021.138500px;}
.ybd{bottom:1027.903500px;}
.y210{bottom:1031.344500px;}
.y2{bottom:1039.309500px;}
.y5c{bottom:1043.943000px;}
.ybc{bottom:1045.836000px;}
.y20f{bottom:1053.942000px;}
.y56{bottom:1057.323000px;}
.ybb{bottom:1063.768500px;}
.y58{bottom:1066.501500px;}
.y1{bottom:1081.152000px;}
.yba{bottom:1081.701000px;}
.y57{bottom:1085.940000px;}
.y61{bottom:1088.850000px;}
.y20e{bottom:1099.633500px;}
.yb9{bottom:1099.635000px;}
.h1e{height:13.501999px;}
.h1b{height:18.982896px;}
.h1d{height:19.455384px;}
.h1a{height:19.900079px;}
.h1c{height:24.876096px;}
.h1f{height:29.071252px;}
.h3f{height:32.804932px;}
.h9{height:32.900573px;}
.h37{height:34.684932px;}
.h17{height:35.865450px;}
.h6{height:37.174694px;}
.h5{height:37.605082px;}
.h7{height:40.348800px;}
.h2e{height:40.839205px;}
.h3{height:41.006062px;}
.h4{height:41.125613px;}
.he{height:41.304940px;}
.h29{height:42.718925px;}
.h8{height:42.799330px;}
.h3d{height:43.112898px;}
.ha{height:44.831700px;}
.h2{height:45.238339px;}
.h14{height:45.258321px;}
.h33{height:46.036383px;}
.h2f{height:46.809501px;}
.h3b{height:46.983811px;}
.h2a{height:48.187536px;}
.h2c{height:50.263637px;}
.h32{height:50.450809px;}
.h18{height:50.477846px;}
.hf{height:51.147331px;}
.h27{height:51.743359px;}
.h3e{height:52.064757px;}
.hc{height:52.621330px;}
.h16{height:53.674124px;}
.hb{height:59.525700px;}
.h35{height:60.618139px;}
.h23{height:61.569450px;}
.h2d{height:62.829546px;}
.h38{height:63.063512px;}
.h21{height:63.957450px;}
.h20{height:63.963450px;}
.h28{height:64.679199px;}
.hd{height:70.343700px;}
.h36{height:75.704570px;}
.h12{height:82.129613px;}
.h24{height:85.271700px;}
.h10{height:85.835700px;}
.h22{height:89.661450px;}
.h34{height:90.210634px;}
.h30{height:93.142130px;}
.h1{height:98.701718px;}
.h11{height:126.275700px;}
.h25{height:127.506763px;}
.h15{height:130.288300px;}
.h13{height:213.790998px;}
.h39{height:233.621755px;}
.h19{height:266.541539px;}
.h26{height:312.330520px;}
.h3c{height:327.070457px;}
.h31{height:363.008208px;}
.h2b{height:372.408030px;}
.h3a{height:373.794808px;}
.h0{height:1188.000000px;}
.w2{width:338.928757px;}
.w5{width:367.200000px;}
.w1{width:376.596548px;}
.w4{width:376.597620px;}
.w3{width:376.606126px;}
.w6{width:378.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x44{left:7.225063px;}
.x37{left:18.829102px;}
.x5a{left:21.598546px;}
.x6f{left:23.689082px;}
.x56{left:25.534464px;}
.x35{left:28.095172px;}
.x58{left:31.078184px;}
.x59{left:33.236185px;}
.x3f{left:34.275121px;}
.x36{left:35.811198px;}
.x46{left:37.532358px;}
.x48{left:38.963805px;}
.x55{left:41.144832px;}
.x3e{left:43.541190px;}
.x38{left:44.644489px;}
.x3b{left:47.265909px;}
.x3d{left:49.367348px;}
.x5c{left:53.839364px;}
.x39{left:56.531979px;}
.x3c{left:58.442431px;}
.x6b{left:62.105613px;}
.x3a{left:69.746480px;}
.x16{left:73.446000px;}
.x65{left:78.139500px;}
.x62{left:82.627177px;}
.x29{left:84.250500px;}
.x18{left:85.401000px;}
.x15{left:88.390500px;}
.x28{left:89.739000px;}
.x24{left:92.646000px;}
.x4{left:95.769000px;}
.x27{left:103.333500px;}
.x5b{left:109.725000px;}
.x6{left:122.406000px;}
.x1{left:125.202000px;}
.x3{left:126.400500px;}
.x47{left:127.785325px;}
.x5{left:144.889500px;}
.x2a{left:156.705000px;}
.x40{left:172.226688px;}
.x2d{left:174.295500px;}
.x1f{left:177.430500px;}
.x68{left:181.151415px;}
.x71{left:184.257367px;}
.x30{left:187.200000px;}
.x69{left:189.361997px;}
.x1e{left:196.000500px;}
.x57{left:197.327842px;}
.x63{left:200.465127px;}
.x64{left:201.872079px;}
.x17{left:203.428500px;}
.x5d{left:204.763348px;}
.x23{left:206.991000px;}
.x6e{left:208.288537px;}
.x66{left:212.671619px;}
.x33{left:220.368000px;}
.x25{left:227.764500px;}
.x60{left:231.660697px;}
.x5e{left:232.687929px;}
.x20{left:240.001500px;}
.x2e{left:241.960500px;}
.x41{left:247.940143px;}
.x2b{left:249.319500px;}
.x2{left:251.860500px;}
.x5f{left:254.785236px;}
.x2c{left:262.920000px;}
.x45{left:270.571397px;}
.x70{left:277.219825px;}
.x31{left:279.814500px;}
.x61{left:284.180258px;}
.x72{left:287.135613px;}
.x32{left:289.081500px;}
.x8{left:290.739000px;}
.xb{left:292.569000px;}
.x6a{left:297.461289px;}
.x6c{left:300.778736px;}
.x2f{left:302.040000px;}
.x21{left:304.998000px;}
.x67{left:308.918835px;}
.x34{left:313.509000px;}
.x6d{left:314.754404px;}
.xa{left:317.376000px;}
.x7{left:322.437000px;}
.x26{left:324.124500px;}
.x9{left:339.859500px;}
.x22{left:407.950500px;}
.x19{left:467.967000px;}
.x75{left:473.944500px;}
.x4e{left:476.932500px;}
.x1a{left:482.910000px;}
.x1c{left:484.260000px;}
.xc{left:485.707500px;}
.x43{left:486.796500px;}
.x4c{left:488.164500px;}
.xd{left:496.096500px;}
.x1d{left:497.854500px;}
.xf{left:499.527000px;}
.x1b{left:503.848500px;}
.xe{left:529.758000px;}
.x54{left:543.726000px;}
.x42{left:576.991500px;}
.x73{left:591.090000px;}
.x50{left:593.616000px;}
.x53{left:604.992000px;}
.x4a{left:606.490500px;}
.x74{left:614.418000px;}
.x49{left:633.474000px;}
.x51{left:637.270500px;}
.x14{left:646.177500px;}
.x11{left:647.881500px;}
.x13{left:674.518500px;}
.x10{left:677.517000px;}
.x12{left:697.002000px;}
.x4b{left:723.637500px;}
.x4f{left:728.682000px;}
.x4d{left:730.650000px;}
.x52{left:827.130000px;}
@media print{
.vc{vertical-align:-26.160781pt;}
.v17{vertical-align:-9.415943pt;}
.v1{vertical-align:-7.973333pt;}
.v19{vertical-align:-6.953174pt;}
.v10{vertical-align:-5.761307pt;}
.ve{vertical-align:-3.716347pt;}
.vf{vertical-align:-2.044815pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.088000pt;}
.v5{vertical-align:8.736000pt;}
.v2{vertical-align:13.061333pt;}
.v7{vertical-align:14.709333pt;}
.v4{vertical-align:16.704000pt;}
.v12{vertical-align:17.829333pt;}
.v8{vertical-align:19.280000pt;}
.v6{vertical-align:22.677333pt;}
.v11{vertical-align:24.976000pt;}
.v18{vertical-align:27.045957pt;}
.va{vertical-align:28.474667pt;}
.v9{vertical-align:36.448000pt;}
.v15{vertical-align:38.114216pt;}
.v16{vertical-align:39.266001pt;}
.v14{vertical-align:42.506667pt;}
.v13{vertical-align:47.818667pt;}
.vd{vertical-align:60.598906pt;}
.vb{vertical-align:72.394667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000055pt;}
.ls5e{letter-spacing:0.000125pt;}
.ls60{letter-spacing:0.000325pt;}
.ls31{letter-spacing:0.000479pt;}
.ls13{letter-spacing:0.000681pt;}
.ls42{letter-spacing:0.001146pt;}
.ls57{letter-spacing:0.001333pt;}
.ls40{letter-spacing:0.001441pt;}
.ls39{letter-spacing:0.001822pt;}
.ls18{letter-spacing:0.002000pt;}
.ls7b{letter-spacing:0.002079pt;}
.ls67{letter-spacing:0.002122pt;}
.ls49{letter-spacing:0.002352pt;}
.ls1f{letter-spacing:0.002694pt;}
.ls63{letter-spacing:0.002717pt;}
.ls5f{letter-spacing:0.003149pt;}
.lsc9{letter-spacing:0.003246pt;}
.ls1{letter-spacing:0.003635pt;}
.ls5{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004003pt;}
.ls14{letter-spacing:0.004212pt;}
.ls16{letter-spacing:0.004349pt;}
.ls1d{letter-spacing:0.004716pt;}
.ls94{letter-spacing:0.004777pt;}
.ls37{letter-spacing:0.005118pt;}
.lse{letter-spacing:0.005388pt;}
.lsaf{letter-spacing:0.005459pt;}
.ls1a{letter-spacing:0.006015pt;}
.ls3a{letter-spacing:0.013307pt;}
.ls36{letter-spacing:0.020030pt;}
.ls86{letter-spacing:0.022229pt;}
.lsaa{letter-spacing:0.022312pt;}
.ls75{letter-spacing:0.022884pt;}
.ls80{letter-spacing:0.024168pt;}
.ls9c{letter-spacing:0.029693pt;}
.ls3b{letter-spacing:0.031341pt;}
.ls55{letter-spacing:0.038739pt;}
.ls51{letter-spacing:0.038774pt;}
.ls76{letter-spacing:0.054489pt;}
.ls50{letter-spacing:0.064682pt;}
.ls4f{letter-spacing:0.074116pt;}
.ls54{letter-spacing:0.098821pt;}
.ls9f{letter-spacing:0.146099pt;}
.ls99{letter-spacing:0.193894pt;}
.ls6f{letter-spacing:0.261526pt;}
.lsc2{letter-spacing:0.531295pt;}
.ls7e{letter-spacing:0.550484pt;}
.ls7f{letter-spacing:0.584944pt;}
.lsa1{letter-spacing:0.642838pt;}
.lsa7{letter-spacing:0.659397pt;}
.lsa3{letter-spacing:0.680067pt;}
.ls72{letter-spacing:0.697490pt;}
.ls85{letter-spacing:0.719955pt;}
.lsa4{letter-spacing:0.722636pt;}
.ls9e{letter-spacing:0.730577pt;}
.ls73{letter-spacing:0.741150pt;}
.lscf{letter-spacing:0.746682pt;}
.ls81{letter-spacing:0.794032pt;}
.lsbb{letter-spacing:0.796989pt;}
.ls82{letter-spacing:0.811465pt;}
.lsbc{letter-spacing:0.814487pt;}
.ls97{letter-spacing:0.969630pt;}
.ls98{letter-spacing:1.198094pt;}
.ls56{letter-spacing:1.294964pt;}
.ls7d{letter-spacing:1.410755pt;}
.ls83{letter-spacing:1.545766pt;}
.lsbd{letter-spacing:1.551522pt;}
.lsbe{letter-spacing:1.590288pt;}
.ls71{letter-spacing:1.591272pt;}
.ls96{letter-spacing:1.742742pt;}
.ls6c{letter-spacing:1.787391pt;}
.lsc4{letter-spacing:1.859647pt;}
.lsa6{letter-spacing:1.939299pt;}
.lsa2{letter-spacing:2.045618pt;}
.ls5b{letter-spacing:2.108364pt;}
.ls58{letter-spacing:2.124101pt;}
.ls59{letter-spacing:2.125802pt;}
.ls5c{letter-spacing:2.125997pt;}
.ls5a{letter-spacing:2.129434pt;}
.ls70{letter-spacing:2.452205pt;}
.ls3{letter-spacing:2.635446pt;}
.ls21{letter-spacing:2.652911pt;}
.ls1e{letter-spacing:2.654441pt;}
.lsa{letter-spacing:2.654903pt;}
.lsb{letter-spacing:2.655711pt;}
.lsc{letter-spacing:2.656693pt;}
.ls44{letter-spacing:2.657326pt;}
.ls32{letter-spacing:2.658245pt;}
.ls9{letter-spacing:2.658422pt;}
.ls4c{letter-spacing:2.660237pt;}
.ls4e{letter-spacing:2.660577pt;}
.lsb0{letter-spacing:2.970027pt;}
.ls22{letter-spacing:3.991170pt;}
.lsa5{letter-spacing:4.750195pt;}
.ls9d{letter-spacing:7.966362pt;}
.ls53{letter-spacing:9.536226pt;}
.ls38{letter-spacing:10.559336pt;}
.ls25{letter-spacing:11.803145pt;}
.ls6b{letter-spacing:11.804745pt;}
.lsa9{letter-spacing:11.807237pt;}
.ls28{letter-spacing:11.808479pt;}
.ls6e{letter-spacing:12.109738pt;}
.ls6d{letter-spacing:12.109788pt;}
.ls74{letter-spacing:12.218742pt;}
.ls90{letter-spacing:12.333361pt;}
.ls62{letter-spacing:12.546717pt;}
.ls8e{letter-spacing:12.770079pt;}
.lsc0{letter-spacing:12.805043pt;}
.lsb8{letter-spacing:13.336648pt;}
.ls95{letter-spacing:13.592027pt;}
.ls26{letter-spacing:14.460911pt;}
.ls6a{letter-spacing:14.468577pt;}
.ls23{letter-spacing:14.757812pt;}
.ls77{letter-spacing:14.834541pt;}
.ls7{letter-spacing:14.877361pt;}
.ls5d{letter-spacing:14.882533pt;}
.ls61{letter-spacing:15.199633pt;}
.ls7a{letter-spacing:15.314694pt;}
.lsce{letter-spacing:15.576027pt;}
.lsae{letter-spacing:15.631321pt;}
.lsad{letter-spacing:15.636654pt;}
.lsb1{letter-spacing:15.790670pt;}
.ls84{letter-spacing:15.881046pt;}
.lsf{letter-spacing:16.215578pt;}
.lsc3{letter-spacing:16.270451pt;}
.ls15{letter-spacing:16.674245pt;}
.lsba{letter-spacing:16.737213pt;}
.ls35{letter-spacing:17.005361pt;}
.ls8c{letter-spacing:17.192027pt;}
.ls41{letter-spacing:17.346533pt;}
.ls65{letter-spacing:17.412577pt;}
.ls2d{letter-spacing:17.415578pt;}
.ls68{letter-spacing:17.417910pt;}
.lsc6{letter-spacing:17.432027pt;}
.lsa8{letter-spacing:17.566975pt;}
.lsb9{letter-spacing:17.799872pt;}
.lsb5{letter-spacing:17.890694pt;}
.lsb4{letter-spacing:17.896027pt;}
.ls2{letter-spacing:17.928467pt;}
.ls0{letter-spacing:17.933800pt;}
.lsc1{letter-spacing:18.183310pt;}
.lsca{letter-spacing:18.232027pt;}
.ls88{letter-spacing:18.360027pt;}
.ls87{letter-spacing:18.365361pt;}
.lscc{letter-spacing:18.562694pt;}
.ls20{letter-spacing:18.594694pt;}
.ls91{letter-spacing:18.596003pt;}
.ls8f{letter-spacing:18.600027pt;}
.ls45{letter-spacing:18.840027pt;}
.ls4a{letter-spacing:18.947774pt;}
.lsb7{letter-spacing:19.043210pt;}
.lsc7{letter-spacing:19.101361pt;}
.ls64{letter-spacing:19.161910pt;}
.lsc5{letter-spacing:19.263321pt;}
.lscb{letter-spacing:19.304027pt;}
.ls78{letter-spacing:19.387145pt;}
.ls9b{letter-spacing:19.712721pt;}
.ls6{letter-spacing:19.965361pt;}
.ls43{letter-spacing:20.000517pt;}
.ls4b{letter-spacing:20.093361pt;}
.ls8d{letter-spacing:20.360027pt;}
.lscd{letter-spacing:20.456027pt;}
.ls8{letter-spacing:20.482694pt;}
.lsc8{letter-spacing:20.568027pt;}
.ls89{letter-spacing:20.909361pt;}
.ls2b{letter-spacing:21.131145pt;}
.ls66{letter-spacing:21.136479pt;}
.ls79{letter-spacing:21.175200pt;}
.ls12{letter-spacing:21.250245pt;}
.ls11{letter-spacing:21.251774pt;}
.lsbf{letter-spacing:21.757361pt;}
.ls1c{letter-spacing:22.450245pt;}
.ls4{letter-spacing:22.744027pt;}
.lsab{letter-spacing:22.917674pt;}
.lsb2{letter-spacing:23.117361pt;}
.ls8b{letter-spacing:23.650694pt;}
.ls92{letter-spacing:23.912027pt;}
.lsb6{letter-spacing:25.149361pt;}
.lsac{letter-spacing:25.662322pt;}
.ls93{letter-spacing:26.162694pt;}
.lsd{letter-spacing:26.566586pt;}
.ls46{letter-spacing:26.571919pt;}
.ls8a{letter-spacing:27.501361pt;}
.lsb3{letter-spacing:28.168027pt;}
.ls7c{letter-spacing:29.245361pt;}
.ls4d{letter-spacing:29.608027pt;}
.ls69{letter-spacing:32.468157pt;}
.ls47{letter-spacing:36.157361pt;}
.ls3c{letter-spacing:36.942978pt;}
.lsa0{letter-spacing:37.760914pt;}
.ls33{letter-spacing:41.980911pt;}
.ls19{letter-spacing:50.684503pt;}
.ls2e{letter-spacing:51.138694pt;}
.ls9a{letter-spacing:57.245893pt;}
.ls24{letter-spacing:66.541361pt;}
.ls2a{letter-spacing:69.496027pt;}
.ls30{letter-spacing:72.093361pt;}
.ls52{letter-spacing:85.579862pt;}
.ls3f{letter-spacing:119.081750pt;}
.ls27{letter-spacing:130.466245pt;}
.ls3e{letter-spacing:135.509504pt;}
.ls1b{letter-spacing:221.618245pt;}
.ls2f{letter-spacing:238.892911pt;}
.ls34{letter-spacing:296.834079pt;}
.ls3d{letter-spacing:316.214802pt;}
.ls2c{letter-spacing:415.538694pt;}
.ls29{letter-spacing:537.091774pt;}
.ws78{word-spacing:-56.571784pt;}
.ws12b{word-spacing:-53.133867pt;}
.ws165{word-spacing:-35.387298pt;}
.ws10d{word-spacing:-35.256011pt;}
.ws110{word-spacing:-35.234836pt;}
.ws32{word-spacing:-34.611401pt;}
.wsf2{word-spacing:-32.740822pt;}
.ws160{word-spacing:-31.922956pt;}
.ws136{word-spacing:-29.129709pt;}
.ws50{word-spacing:-28.118362pt;}
.wsf4{word-spacing:-27.629155pt;}
.wscd{word-spacing:-24.779366pt;}
.wsd0{word-spacing:-24.705250pt;}
.ws139{word-spacing:-24.694064pt;}
.ws16e{word-spacing:-19.243466pt;}
.ws47{word-spacing:-15.940160pt;}
.ws31{word-spacing:-14.760588pt;}
.ws4{word-spacing:-13.283467pt;}
.ws14{word-spacing:-13.262246pt;}
.ws9{word-spacing:-11.955200pt;}
.wsf7{word-spacing:-10.899075pt;}
.ws164{word-spacing:-10.626816pt;}
.ws43{word-spacing:-10.626800pt;}
.ws111{word-spacing:-10.587391pt;}
.ws74{word-spacing:-10.549100pt;}
.wsf5{word-spacing:-9.945410pt;}
.ws138{word-spacing:-9.696974pt;}
.ws113{word-spacing:-9.660998pt;}
.ws10f{word-spacing:-8.602255pt;}
.wsd9{word-spacing:-8.501467pt;}
.wsf3{word-spacing:-8.174306pt;}
.ws137{word-spacing:-7.305936pt;}
.ws8b{word-spacing:-5.940366pt;}
.wsf1{word-spacing:-5.920125pt;}
.ws17{word-spacing:-5.887232pt;}
.ws12d{word-spacing:-0.956410pt;}
.wsb6{word-spacing:-0.903276pt;}
.ws23{word-spacing:-0.850142pt;}
.ws1b0{word-spacing:-0.807637pt;}
.ws35{word-spacing:-0.743874pt;}
.ws6b{word-spacing:-0.604925pt;}
.ws4a{word-spacing:-0.531339pt;}
.ws11f{word-spacing:-0.478205pt;}
.ws182{word-spacing:-0.478044pt;}
.ws120{word-spacing:-0.461615pt;}
.ws9c{word-spacing:-0.371937pt;}
.ws64{word-spacing:-0.318803pt;}
.ws9b{word-spacing:-0.265669pt;}
.wsfc{word-spacing:-0.212535pt;}
.wsef{word-spacing:-0.159402pt;}
.wsee{word-spacing:-0.106268pt;}
.wsca{word-spacing:-0.098821pt;}
.ws5c{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws7c{word-spacing:-0.042507pt;}
.ws4e{word-spacing:-0.037194pt;}
.ws7a{word-spacing:-0.031881pt;}
.wsce{word-spacing:-0.024705pt;}
.wsd1{word-spacing:-0.017294pt;}
.wsd8{word-spacing:-0.015850pt;}
.ws58{word-spacing:0.000000pt;}
.ws45{word-spacing:0.011967pt;}
.ws3e{word-spacing:0.053134pt;}
.wsa5{word-spacing:0.106268pt;}
.ws4c{word-spacing:0.265669pt;}
.ws135{word-spacing:0.290301pt;}
.ws134{word-spacing:0.305134pt;}
.wsa3{word-spacing:0.478205pt;}
.wsfb{word-spacing:0.584473pt;}
.ws4d{word-spacing:0.743874pt;}
.ws6a{word-spacing:0.864694pt;}
.ws33{word-spacing:0.903276pt;}
.ws98{word-spacing:0.956410pt;}
.wsa4{word-spacing:1.115811pt;}
.ws34{word-spacing:1.222079pt;}
.ws12{word-spacing:1.243341pt;}
.wseb{word-spacing:1.275213pt;}
.ws196{word-spacing:1.360230pt;}
.ws22{word-spacing:1.487748pt;}
.wsa7{word-spacing:1.540882pt;}
.ws3c{word-spacing:1.594016pt;}
.ws101{word-spacing:1.647150pt;}
.ws1a6{word-spacing:1.657781pt;}
.ws16a{word-spacing:1.799911pt;}
.ws16b{word-spacing:1.806551pt;}
.ws187{word-spacing:1.859685pt;}
.ws1a{word-spacing:1.965953pt;}
.ws10b{word-spacing:2.019087pt;}
.wsb8{word-spacing:2.072221pt;}
.ws52{word-spacing:2.125355pt;}
.ws1a3{word-spacing:2.125360pt;}
.ws3f{word-spacing:2.284756pt;}
.ws1a5{word-spacing:2.422910pt;}
.ws102{word-spacing:2.497292pt;}
.ws146{word-spacing:2.503718pt;}
.ws94{word-spacing:2.550426pt;}
.ws1b6{word-spacing:2.635446pt;}
.ws3b{word-spacing:2.656693pt;}
.ws8e{word-spacing:2.762961pt;}
.ws1ae{word-spacing:2.805475pt;}
.ws179{word-spacing:2.816095pt;}
.ws9a{word-spacing:2.922363pt;}
.wsab{word-spacing:2.975497pt;}
.ws2c{word-spacing:2.975504pt;}
.wsaa{word-spacing:3.028630pt;}
.wsac{word-spacing:3.081764pt;}
.ws9f{word-spacing:3.134898pt;}
.ws6d{word-spacing:3.188032pt;}
.wse4{word-spacing:3.241166pt;}
.ws4b{word-spacing:3.294300pt;}
.ws26{word-spacing:3.400567pt;}
.wsa6{word-spacing:3.506835pt;}
.ws71{word-spacing:3.719230pt;}
.ws73{word-spacing:3.719371pt;}
.ws70{word-spacing:3.721852pt;}
.ws5f{word-spacing:3.878772pt;}
.ws12a{word-spacing:3.906704pt;}
.ws169{word-spacing:3.995677pt;}
.ws84{word-spacing:4.091308pt;}
.ws17b{word-spacing:4.144442pt;}
.ws17a{word-spacing:4.147422pt;}
.ws4f{word-spacing:4.197575pt;}
.wsd7{word-spacing:4.216727pt;}
.wsd6{word-spacing:4.231084pt;}
.wsd5{word-spacing:4.249330pt;}
.ws2e{word-spacing:4.250720pt;}
.ws13e{word-spacing:4.250735pt;}
.wsfa{word-spacing:4.335734pt;}
.ws16{word-spacing:4.410111pt;}
.ws15c{word-spacing:4.569513pt;}
.ws15b{word-spacing:4.593872pt;}
.ws191{word-spacing:4.718299pt;}
.ws19{word-spacing:4.728914pt;}
.ws18{word-spacing:4.738385pt;}
.ws16d{word-spacing:4.805707pt;}
.ws21{word-spacing:4.835182pt;}
.ws175{word-spacing:4.844421pt;}
.ws27{word-spacing:4.888316pt;}
.ws185{word-spacing:4.941450pt;}
.ws184{word-spacing:4.949570pt;}
.ws29{word-spacing:4.973342pt;}
.ws13d{word-spacing:5.006137pt;}
.ws13c{word-spacing:5.015850pt;}
.ws42{word-spacing:5.047717pt;}
.ws121{word-spacing:5.073333pt;}
.ws122{word-spacing:5.079230pt;}
.wsd2{word-spacing:5.097955pt;}
.ws104{word-spacing:5.207119pt;}
.ws18a{word-spacing:5.260253pt;}
.ws44{word-spacing:5.266690pt;}
.ws7f{word-spacing:5.267021pt;}
.wsb9{word-spacing:5.270893pt;}
.ws18b{word-spacing:5.276563pt;}
.ws46{word-spacing:5.286774pt;}
.wsba{word-spacing:5.289241pt;}
.ws63{word-spacing:5.309317pt;}
.wsc9{word-spacing:5.311015pt;}
.ws188{word-spacing:5.312282pt;}
.ws3{word-spacing:5.313387pt;}
.ws195{word-spacing:5.313400pt;}
.ws161{word-spacing:5.313408pt;}
.ws162{word-spacing:5.313429pt;}
.ws123{word-spacing:5.313897pt;}
.ws66{word-spacing:5.313956pt;}
.ws12e{word-spacing:5.314385pt;}
.ws131{word-spacing:5.314704pt;}
.wsf9{word-spacing:5.398414pt;}
.ws163{word-spacing:5.409046pt;}
.ws1b{word-spacing:5.419654pt;}
.ws12c{word-spacing:5.472788pt;}
.ws85{word-spacing:5.525922pt;}
.wse{word-spacing:5.547213pt;}
.ws2d{word-spacing:5.695965pt;}
.ws17c{word-spacing:5.791591pt;}
.ws54{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws55{word-spacing:5.950993pt;}
.ws10{word-spacing:5.977600pt;}
.ws25{word-spacing:6.004127pt;}
.ws48{word-spacing:6.110395pt;}
.ws168{word-spacing:6.243208pt;}
.ws2a{word-spacing:6.248558pt;}
.ws10e{word-spacing:6.258666pt;}
.ws166{word-spacing:6.281972pt;}
.ws69{word-spacing:6.322930pt;}
.ws193{word-spacing:6.376080pt;}
.wsd4{word-spacing:6.503602pt;}
.ws5e{word-spacing:6.534047pt;}
.ws5d{word-spacing:6.535466pt;}
.ws90{word-spacing:6.588599pt;}
.wsd{word-spacing:6.599270pt;}
.ws2b{word-spacing:6.631123pt;}
.ws5a{word-spacing:6.641733pt;}
.ws39{word-spacing:6.661666pt;}
.ws19a{word-spacing:6.673630pt;}
.ws3a{word-spacing:6.694867pt;}
.ws79{word-spacing:6.716138pt;}
.ws7b{word-spacing:6.718137pt;}
.wsb5{word-spacing:6.801135pt;}
.ws53{word-spacing:6.907403pt;}
.ws1a7{word-spacing:6.909419pt;}
.ws1a9{word-spacing:6.928674pt;}
.ws147{word-spacing:6.960537pt;}
.ws6c{word-spacing:7.013670pt;}
.ws1ab{word-spacing:7.013688pt;}
.ws13f{word-spacing:7.056195pt;}
.ws15{word-spacing:7.066804pt;}
.wsbe{word-spacing:7.119938pt;}
.ws18d{word-spacing:7.167823pt;}
.ws41{word-spacing:7.173072pt;}
.ws40{word-spacing:7.194948pt;}
.ws7{word-spacing:7.268762pt;}
.ws17d{word-spacing:7.279340pt;}
.ws11c{word-spacing:7.329897pt;}
.ws11a{word-spacing:7.332474pt;}
.ws132{word-spacing:7.338993pt;}
.wsa{word-spacing:7.412224pt;}
.ws9d{word-spacing:7.438741pt;}
.wsdc{word-spacing:7.481267pt;}
.wsa8{word-spacing:7.491875pt;}
.wsb7{word-spacing:7.545009pt;}
.ws125{word-spacing:7.598143pt;}
.ws126{word-spacing:7.651277pt;}
.ws1a2{word-spacing:7.693803pt;}
.wsbf{word-spacing:7.757545pt;}
.ws6{word-spacing:7.794790pt;}
.wsff{word-spacing:7.810678pt;}
.wsfd{word-spacing:7.816022pt;}
.ws109{word-spacing:7.863812pt;}
.ws176{word-spacing:7.863832pt;}
.ws107{word-spacing:7.870546pt;}
.ws108{word-spacing:7.871321pt;}
.ws116{word-spacing:7.991354pt;}
.ws37{word-spacing:8.129482pt;}
.ws192{word-spacing:8.203890pt;}
.wsec{word-spacing:8.235749pt;}
.ws95{word-spacing:8.342017pt;}
.ws17e{word-spacing:8.395151pt;}
.wsb0{word-spacing:8.448285pt;}
.wsd3{word-spacing:8.586454pt;}
.ws2f{word-spacing:8.607686pt;}
.ws178{word-spacing:8.628962pt;}
.ws177{word-spacing:8.633330pt;}
.ws86{word-spacing:8.713954pt;}
.wsbd{word-spacing:8.979623pt;}
.ws49{word-spacing:9.192159pt;}
.ws186{word-spacing:9.245293pt;}
.ws14d{word-spacing:9.298427pt;}
.ws1e{word-spacing:9.404694pt;}
.ws30{word-spacing:9.457828pt;}
.ws19e{word-spacing:9.521613pt;}
.wscf{word-spacing:9.585637pt;}
.wsc3{word-spacing:9.609107pt;}
.wsc5{word-spacing:9.617230pt;}
.ws3d{word-spacing:9.670364pt;}
.ws156{word-spacing:9.829765pt;}
.ws99{word-spacing:9.882899pt;}
.ws14e{word-spacing:9.936033pt;}
.ws152{word-spacing:9.965570pt;}
.ws154{word-spacing:9.989167pt;}
.ws6f{word-spacing:10.042301pt;}
.ws181{word-spacing:10.095435pt;}
.ws60{word-spacing:10.148569pt;}
.ws15a{word-spacing:10.201702pt;}
.ws17f{word-spacing:10.221356pt;}
.ws8{word-spacing:10.281472pt;}
.wse9{word-spacing:10.361104pt;}
.ws129{word-spacing:10.364563pt;}
.wse7{word-spacing:10.382497pt;}
.ws128{word-spacing:10.467372pt;}
.ws148{word-spacing:10.520506pt;}
.ws8f{word-spacing:10.573639pt;}
.ws1b3{word-spacing:10.622444pt;}
.ws198{word-spacing:10.624803pt;}
.ws7e{word-spacing:10.626773pt;}
.wse2{word-spacing:10.679907pt;}
.ws10a{word-spacing:10.733041pt;}
.ws5b{word-spacing:10.754322pt;}
.wsa1{word-spacing:10.786175pt;}
.wsf{word-spacing:10.807501pt;}
.ws150{word-spacing:10.839309pt;}
.wsb{word-spacing:10.855322pt;}
.ws1aa{word-spacing:10.881843pt;}
.ws24{word-spacing:10.892443pt;}
.ws93{word-spacing:10.945577pt;}
.ws96{word-spacing:11.051844pt;}
.wse3{word-spacing:11.211246pt;}
.ws127{word-spacing:11.317514pt;}
.ws38{word-spacing:11.370647pt;}
.wsad{word-spacing:11.476915pt;}
.wsbc{word-spacing:11.636317pt;}
.ws19f{word-spacing:11.774494pt;}
.ws15d{word-spacing:11.848852pt;}
.wsa0{word-spacing:12.008254pt;}
.ws57{word-spacing:12.061388pt;}
.wsc{word-spacing:12.098662pt;}
.ws1b7{word-spacing:12.157059pt;}
.ws115{word-spacing:12.199566pt;}
.ws87{word-spacing:12.433325pt;}
.wsdd{word-spacing:12.497117pt;}
.ws1a4{word-spacing:12.709653pt;}
.ws0{word-spacing:12.752160pt;}
.ws1f{word-spacing:12.805262pt;}
.ws130{word-spacing:12.858396pt;}
.wsa9{word-spacing:12.911530pt;}
.ws158{word-spacing:12.964663pt;}
.ws11{word-spacing:13.102899pt;}
.ws20{word-spacing:13.336601pt;}
.ws61{word-spacing:13.389734pt;}
.wsc2{word-spacing:13.442868pt;}
.ws16f{word-spacing:13.547392pt;}
.ws105{word-spacing:13.602270pt;}
.ws18c{word-spacing:13.655404pt;}
.ws83{word-spacing:13.689867pt;}
.ws1c{word-spacing:13.761671pt;}
.wsc8{word-spacing:13.921073pt;}
.ws11d{word-spacing:14.183999pt;}
.ws11e{word-spacing:14.186742pt;}
.ws117{word-spacing:14.220179pt;}
.ws119{word-spacing:14.239876pt;}
.ws10c{word-spacing:14.293010pt;}
.wse5{word-spacing:14.426000pt;}
.wse6{word-spacing:14.428022pt;}
.ws92{word-spacing:14.771215pt;}
.ws159{word-spacing:14.877483pt;}
.wsc7{word-spacing:14.930617pt;}
.ws14b{word-spacing:15.090018pt;}
.wsaf{word-spacing:15.143152pt;}
.wsde{word-spacing:15.167602pt;}
.wsdb{word-spacing:15.172936pt;}
.ws12f{word-spacing:15.196286pt;}
.ws1ad{word-spacing:15.302592pt;}
.ws1a0{word-spacing:15.557635pt;}
.ws65{word-spacing:15.599890pt;}
.wsdf{word-spacing:15.688637pt;}
.wsc0{word-spacing:15.780758pt;}
.wsa2{word-spacing:15.833892pt;}
.ws51{word-spacing:15.887026pt;}
.ws13{word-spacing:15.940160pt;}
.ws15e{word-spacing:15.993294pt;}
.ws183{word-spacing:16.099562pt;}
.ws97{word-spacing:16.205829pt;}
.wsbb{word-spacing:16.312097pt;}
.ws1d{word-spacing:16.471499pt;}
.ws189{word-spacing:16.737168pt;}
.ws157{word-spacing:17.109105pt;}
.wsf0{word-spacing:17.371242pt;}
.ws68{word-spacing:17.379756pt;}
.ws67{word-spacing:17.382559pt;}
.ws8a{word-spacing:17.385526pt;}
.ws194{word-spacing:17.470459pt;}
.ws8d{word-spacing:17.481042pt;}
.ws1a8{word-spacing:17.512966pt;}
.ws1ac{word-spacing:17.640488pt;}
.ws16c{word-spacing:17.852979pt;}
.ws56{word-spacing:17.959247pt;}
.ws62{word-spacing:18.012381pt;}
.ws82{word-spacing:18.065515pt;}
.ws19d{word-spacing:18.150574pt;}
.ws19b{word-spacing:18.155301pt;}
.ws14a{word-spacing:18.182409pt;}
.wsb1{word-spacing:18.437452pt;}
.ws2{word-spacing:18.543719pt;}
.ws88{word-spacing:18.649987pt;}
.ws36{word-spacing:18.809389pt;}
.ws91{word-spacing:18.862523pt;}
.ws6e{word-spacing:19.103890pt;}
.ws72{word-spacing:19.621223pt;}
.ws14f{word-spacing:19.659531pt;}
.ws7d{word-spacing:19.970420pt;}
.ws171{word-spacing:20.031215pt;}
.wsb4{word-spacing:20.244003pt;}
.ws28{word-spacing:20.871035pt;}
.ws124{word-spacing:21.222808pt;}
.ws199{word-spacing:21.466136pt;}
.ws100{word-spacing:22.009085pt;}
.wsfe{word-spacing:22.012022pt;}
.ws155{word-spacing:22.528759pt;}
.ws140{word-spacing:22.794429pt;}
.ws89{word-spacing:22.847563pt;}
.ws103{word-spacing:22.953830pt;}
.ws11b{word-spacing:23.239755pt;}
.ws133{word-spacing:23.263259pt;}
.ws9e{word-spacing:23.362222pt;}
.ws1b4{word-spacing:24.824205pt;}
.wsc4{word-spacing:25.521680pt;}
.ws153{word-spacing:25.868440pt;}
.ws180{word-spacing:26.132991pt;}
.ws1a1{word-spacing:26.141928pt;}
.ws145{word-spacing:26.244592pt;}
.wse8{word-spacing:26.294689pt;}
.wsea{word-spacing:26.295013pt;}
.ws170{word-spacing:26.515039pt;}
.ws81{word-spacing:26.518674pt;}
.ws151{word-spacing:26.730556pt;}
.ws1af{word-spacing:27.544666pt;}
.ws1bd{word-spacing:28.054752pt;}
.ws8c{word-spacing:28.635892pt;}
.ws19c{word-spacing:28.734867pt;}
.wsc1{word-spacing:29.322000pt;}
.ws106{word-spacing:29.507751pt;}
.ws141{word-spacing:29.895950pt;}
.ws143{word-spacing:29.906385pt;}
.ws144{word-spacing:29.914367pt;}
.ws118{word-spacing:30.141088pt;}
.wsc6{word-spacing:30.833680pt;}
.wsae{word-spacing:32.028451pt;}
.wsb2{word-spacing:32.103437pt;}
.wsb3{word-spacing:33.512185pt;}
.ws197{word-spacing:33.793224pt;}
.ws14c{word-spacing:35.542442pt;}
.ws149{word-spacing:35.542689pt;}
.ws80{word-spacing:37.087439pt;}
.wscb{word-spacing:39.982836pt;}
.ws1bb{word-spacing:41.614549pt;}
.ws142{word-spacing:45.807259pt;}
.ws15f{word-spacing:50.380247pt;}
.ws76{word-spacing:50.756445pt;}
.ws1bc{word-spacing:52.283856pt;}
.ws1ba{word-spacing:54.876795pt;}
.ws18e{word-spacing:61.507918pt;}
.ws1b9{word-spacing:62.273048pt;}
.ws172{word-spacing:63.256705pt;}
.ws18f{word-spacing:70.094373pt;}
.ws1b8{word-spacing:74.855179pt;}
.ws167{word-spacing:77.122184pt;}
.ws112{word-spacing:77.386732pt;}
.ws1b1{word-spacing:79.360942pt;}
.ws59{word-spacing:90.487607pt;}
.ws190{word-spacing:94.663534pt;}
.wsf6{word-spacing:104.013347pt;}
.ws1b5{word-spacing:104.100133pt;}
.ws77{word-spacing:123.079650pt;}
.ws173{word-spacing:149.707683pt;}
.ws13a{word-spacing:171.923251pt;}
.ws1b2{word-spacing:176.192344pt;}
.ws13b{word-spacing:194.324717pt;}
.ws75{word-spacing:197.445459pt;}
.wscc{word-spacing:210.881458pt;}
.ws174{word-spacing:214.545918pt;}
.wse0{word-spacing:217.587535pt;}
.wsf8{word-spacing:248.989358pt;}
.wse1{word-spacing:299.052044pt;}
.wsda{word-spacing:327.900541pt;}
.wsed{word-spacing:411.946868pt;}
.ws114{word-spacing:549.720595pt;}
._3{margin-left:-6.487669pt;}
._4{margin-left:-5.313387pt;}
._2{margin-left:-4.250709pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._8{margin-left:-0.956416pt;}
._12{width:0.932796pt;}
._5{width:2.327109pt;}
._b{width:3.317408pt;}
._22{width:4.373583pt;}
._23{width:5.383033pt;}
._14{width:11.636322pt;}
._19{width:12.539624pt;}
._10{width:15.121097pt;}
._9{width:16.790302pt;}
._27{width:17.693582pt;}
._28{width:18.915661pt;}
._c{width:20.031473pt;}
._a{width:20.987877pt;}
._6{width:21.901926pt;}
._7{width:23.145267pt;}
._1f{width:24.544129pt;}
._f{width:26.566933pt;}
._e{width:27.576482pt;}
._21{width:29.755040pt;}
._20{width:32.050429pt;}
._25{width:33.717378pt;}
._11{width:34.685875pt;}
._26{width:36.938757pt;}
._16{width:38.426509pt;}
._d{width:42.804750pt;}
._24{width:45.695240pt;}
._13{width:62.732007pt;}
._18{width:72.894202pt;}
._1a{width:103.675061pt;}
._17{width:105.587885pt;}
._15{width:117.923222pt;}
._1e{width:121.333587pt;}
._1c{width:159.019435pt;}
._1b{width:174.379898pt;}
._1d{width:295.786926pt;}
.fsc{font-size:17.293626pt;}
.fsb{font-size:24.705250pt;}
.fs19{font-size:29.223744pt;}
.fs16{font-size:31.762172pt;}
.fs1c{font-size:31.880448pt;}
.fsa{font-size:31.880533pt;}
.fs10{font-size:32.697225pt;}
.fsd{font-size:34.005867pt;}
.fs15{font-size:34.409020pt;}
.fs7{font-size:35.759661pt;}
.fs5{font-size:37.193600pt;}
.fs1b{font-size:37.193856pt;}
.fs14{font-size:38.643992pt;}
.fs18{font-size:38.787895pt;}
.fs11{font-size:39.781641pt;}
.fs12{font-size:42.349562pt;}
.fs4{font-size:42.507200pt;}
.fs17{font-size:42.507264pt;}
.fse{font-size:43.596301pt;}
.fs3{font-size:47.820800pt;}
.fs9{font-size:50.063308pt;}
.fs13{font-size:52.936953pt;}
.fs2{font-size:53.133867pt;}
.fs1a{font-size:53.134081pt;}
.fs6{font-size:53.639492pt;}
.fsf{font-size:54.495376pt;}
.fs1{font-size:58.447467pt;}
.fs8{font-size:71.519323pt;}
.fs0{font-size:127.521600pt;}
.yf0{bottom:-124.234339pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:4.500642pt;}
.yed{bottom:9.076569pt;}
.y98{bottom:9.713706pt;}
.y92{bottom:10.932313pt;}
.y120{bottom:12.802324pt;}
.y17f{bottom:13.732959pt;}
.y14a{bottom:17.218403pt;}
.y1c1{bottom:17.282521pt;}
.y1a7{bottom:18.532959pt;}
.y95{bottom:26.031002pt;}
.y11f{bottom:29.990142pt;}
.y17e{bottom:30.763740pt;}
.yeb{bottom:31.925573pt;}
.y97{bottom:33.415095pt;}
.y149{bottom:33.914695pt;}
.y1c0{bottom:34.040987pt;}
.y1a6{bottom:35.145306pt;}
.y96{bottom:35.743413pt;}
.y121{bottom:43.303695pt;}
.y180{bottom:43.744721pt;}
.y1e4{bottom:47.021968pt;}
.y1a8{bottom:48.126286pt;}
.y94{bottom:49.920138pt;}
.y14f{bottom:52.196251pt;}
.y14e{bottom:53.557473pt;}
.y188{bottom:56.354915pt;}
.y125{bottom:59.287268pt;}
.y187{bottom:59.707455pt;}
.y122{bottom:59.958671pt;}
.y14d{bottom:63.933254pt;}
.y1c2{bottom:64.790739pt;}
.y185{bottom:66.003022pt;}
.y93{bottom:66.042586pt;}
.y184{bottom:66.155769pt;}
.y1c7{bottom:66.776063pt;}
.y181{bottom:67.550660pt;}
.y1c4{bottom:68.229506pt;}
.y1ec{bottom:69.535021pt;}
.y14b{bottom:71.465855pt;}
.yef{bottom:72.858592pt;}
.y1e5{bottom:73.909752pt;}
.y123{bottom:76.613646pt;}
.y8e{bottom:78.989264pt;}
.y1a9{bottom:82.667389pt;}
.y1e8{bottom:82.710241pt;}
.y1c6{bottom:86.164925pt;}
.y1eb{bottom:88.417543pt;}
.y186{bottom:89.455906pt;}
.y182{bottom:91.356599pt;}
.y124{bottom:93.268622pt;}
.y91{bottom:93.312623pt;}
.y14c{bottom:98.690295pt;}
.y90{bottom:99.218448pt;}
.y54{bottom:100.740000pt;}
.y1e6{bottom:100.797535pt;}
.y252{bottom:103.312000pt;}
.yec{bottom:103.320173pt;}
.y1ad{bottom:104.481777pt;}
.y1c5{bottom:105.047447pt;}
.y87{bottom:107.149333pt;}
.y1ea{bottom:107.806405pt;}
.y1c3{bottom:113.530202pt;}
.y183{bottom:115.162539pt;}
.y251{bottom:115.266667pt;}
.y53{bottom:116.680000pt;}
.yb8{bottom:116.681333pt;}
.y1aa{bottom:117.208491pt;}
.ye7{bottom:119.185905pt;}
.y8f{bottom:119.447632pt;}
.y113{bottom:122.471227pt;}
.y86{bottom:123.089333pt;}
.y1e9{bottom:126.688927pt;}
.y250{bottom:127.222667pt;}
.y1e7{bottom:127.685319pt;}
.y20d{bottom:132.372000pt;}
.y89{bottom:132.394310pt;}
.y52{bottom:132.620000pt;}
.yb7{bottom:132.621333pt;}
.y11c{bottom:133.984649pt;}
.y1b0{bottom:138.480883pt;}
.y85{bottom:139.030667pt;}
.y175{bottom:139.163842pt;}
.y24f{bottom:139.177333pt;}
.yea{bottom:139.357021pt;}
.y114{bottom:141.902032pt;}
.y11e{bottom:141.995452pt;}
.y8c{bottom:142.257832pt;}
.y8d{bottom:144.278874pt;}
.y141{bottom:145.289934pt;}
.y20c{bottom:148.312000pt;}
.y51{bottom:148.561333pt;}
.y1d5{bottom:148.673333pt;}
.y11b{bottom:149.529293pt;}
.y2e{bottom:150.098667pt;}
.y24e{bottom:151.132000pt;}
.y148{bottom:151.167020pt;}
.y147{bottom:151.322210pt;}
.y146{bottom:151.446168pt;}
.y145{bottom:151.541226pt;}
.y1ab{bottom:151.749594pt;}
.y1bb{bottom:151.985798pt;}
.y17d{bottom:152.756700pt;}
.y179{bottom:153.058265pt;}
.y1af{bottom:153.586892pt;}
.y84{bottom:154.970667pt;}
.ye9{bottom:155.167420pt;}
.y8a{bottom:159.813340pt;}
.y115{bottom:161.332837pt;}
.y11d{bottom:161.361744pt;}
.y17a{bottom:161.640340pt;}
.y17c{bottom:161.872176pt;}
.y2d{bottom:162.054667pt;}
.y176{bottom:162.969782pt;}
.y24d{bottom:163.088000pt;}
.y144{bottom:163.757859pt;}
.y1bd{bottom:163.915877pt;}
.y20b{bottom:164.253333pt;}
.y1b2{bottom:164.315724pt;}
.y50{bottom:164.501333pt;}
.y111{bottom:164.536000pt;}
.y1d4{bottom:164.613333pt;}
.y1a4{bottom:167.757333pt;}
.y1d7{bottom:168.204813pt;}
.y1ae{bottom:168.692901pt;}
.y11a{bottom:170.019647pt;}
.y83{bottom:170.910667pt;}
.y1bf{bottom:171.599167pt;}
.y8b{bottom:173.299462pt;}
.y2c{bottom:174.009333pt;}
.y24c{bottom:175.042667pt;}
.y1b1{bottom:175.376087pt;}
.y142{bottom:179.057169pt;}
.y20a{bottom:180.193333pt;}
.y4f{bottom:180.441333pt;}
.y110{bottom:180.476000pt;}
.y1d3{bottom:180.553333pt;}
.y116{bottom:180.763642pt;}
.y1a3{bottom:183.698667pt;}
.y16a{bottom:185.584000pt;}
.y2b{bottom:185.964000pt;}
.y1ac{bottom:186.290696pt;}
.y177{bottom:186.775721pt;}
.y82{bottom:186.850667pt;}
.y24b{bottom:186.997333pt;}
.y1be{bottom:190.988029pt;}
.y17b{bottom:193.457103pt;}
.y1db{bottom:195.073356pt;}
.y1dc{bottom:195.866078pt;}
.y209{bottom:196.133333pt;}
.ye8{bottom:196.326179pt;}
.y4e{bottom:196.381333pt;}
.yb6{bottom:196.382667pt;}
.y10f{bottom:196.416000pt;}
.y2a{bottom:197.920000pt;}
.y24a{bottom:198.953333pt;}
.y1d2{bottom:199.388000pt;}
.y1a2{bottom:199.638667pt;}
.y1bc{bottom:199.706445pt;}
.y117{bottom:200.194447pt;}
.y1d8{bottom:201.814542pt;}
.y169{bottom:206.666667pt;}
.y81{bottom:207.504000pt;}
.y29{bottom:209.874667pt;}
.y178{bottom:210.581661pt;}
.y249{bottom:210.908000pt;}
.y4d{bottom:212.321333pt;}
.yb5{bottom:212.322667pt;}
.y143{bottom:212.824404pt;}
.y208{bottom:213.929333pt;}
.y1d1{bottom:215.328000pt;}
.y1a1{bottom:215.578667pt;}
.y10e{bottom:216.661333pt;}
.y136{bottom:218.197333pt;}
.y1e3{bottom:219.022039pt;}
.y118{bottom:219.625251pt;}
.y1e1{bottom:220.316582pt;}
.y28{bottom:221.829333pt;}
.y168{bottom:222.608000pt;}
.y248{bottom:222.862667pt;}
.y80{bottom:225.602667pt;}
.y4c{bottom:228.262667pt;}
.y1e2{bottom:228.838539pt;}
.ye5{bottom:228.968000pt;}
.y207{bottom:229.869333pt;}
.y1e0{bottom:230.133083pt;}
.y1d0{bottom:231.268000pt;}
.y1a0{bottom:231.518667pt;}
.y135{bottom:234.137333pt;}
.y16c{bottom:234.582964pt;}
.y247{bottom:234.818667pt;}
.y1d9{bottom:235.424271pt;}
.y10d{bottom:236.992000pt;}
.y167{bottom:238.548000pt;}
.y1dd{bottom:238.935322pt;}
.y119{bottom:239.056056pt;}
.y138{bottom:241.049178pt;}
.y4b{bottom:244.202667pt;}
.y1df{bottom:244.208186pt;}
.ye4{bottom:244.908000pt;}
.y246{bottom:246.773333pt;}
.y1cf{bottom:247.209333pt;}
.y19f{bottom:247.458667pt;}
.y206{bottom:247.666667pt;}
.y27{bottom:248.120000pt;}
.y174{bottom:248.175822pt;}
.y170{bottom:248.477387pt;}
.y7f{bottom:249.981333pt;}
.y173{bottom:251.528363pt;}
.y1b5{bottom:251.970950pt;}
.y126{bottom:252.738799pt;}
.y1de{bottom:254.024686pt;}
.y166{bottom:254.488000pt;}
.y171{bottom:257.059462pt;}
.y16d{bottom:258.314866pt;}
.y13a{bottom:258.373443pt;}
.y245{bottom:258.729333pt;}
.y4a{bottom:260.142667pt;}
.ye3{bottom:260.848000pt;}
.y1ce{bottom:263.149333pt;}
.y134{bottom:263.150667pt;}
.y205{bottom:263.606667pt;}
.y26{bottom:264.060000pt;}
.y7e{bottom:265.921333pt;}
.y1b8{bottom:267.079477pt;}
.y19e{bottom:268.578667pt;}
.y1da{bottom:269.034001pt;}
.y165{bottom:270.428000pt;}
.y244{bottom:270.684000pt;}
.y1b6{bottom:274.023523pt;}
.y10c{bottom:275.641333pt;}
.y49{bottom:276.082667pt;}
.y140{bottom:276.616130pt;}
.ye2{bottom:276.788000pt;}
.y1ba{bottom:277.139856pt;}
.y1cd{bottom:279.089333pt;}
.y133{bottom:279.092000pt;}
.y204{bottom:279.546667pt;}
.y25{bottom:280.000000pt;}
.y16e{bottom:282.046767pt;}
.y13b{bottom:282.096187pt;}
.y139{bottom:282.403241pt;}
.y243{bottom:282.638667pt;}
.y19d{bottom:284.518667pt;}
.y7d{bottom:285.689333pt;}
.y164{bottom:286.368000pt;}
.y13c{bottom:288.169427pt;}
.y172{bottom:288.876225pt;}
.y13d{bottom:289.426193pt;}
.y48{bottom:292.022667pt;}
.yb4{bottom:292.476000pt;}
.ye1{bottom:292.728000pt;}
.y13e{bottom:294.254083pt;}
.y242{bottom:294.594667pt;}
.y7b{bottom:294.801333pt;}
.y1cc{bottom:295.029333pt;}
.y132{bottom:295.032000pt;}
.y13f{bottom:295.428597pt;}
.y203{bottom:295.486667pt;}
.y24{bottom:295.940000pt;}
.y1b7{bottom:296.076095pt;}
.y1b9{bottom:296.528719pt;}
.y10b{bottom:296.750667pt;}
.y7c{bottom:303.786667pt;}
.y16f{bottom:305.778668pt;}
.y241{bottom:306.549333pt;}
.y163{bottom:307.450667pt;}
.y47{bottom:307.962667pt;}
.yb3{bottom:308.416000pt;}
.ye0{bottom:309.374667pt;}
.y1cb{bottom:310.969333pt;}
.y131{bottom:310.972000pt;}
.y202{bottom:311.428000pt;}
.y19c{bottom:311.841333pt;}
.y23{bottom:312.516000pt;}
.y10a{bottom:312.690667pt;}
.y240{bottom:318.504000pt;}
.y162{bottom:323.392000pt;}
.y46{bottom:323.904000pt;}
.yb2{bottom:324.356000pt;}
.ydf{bottom:325.314667pt;}
.y7a{bottom:326.578667pt;}
.y1ca{bottom:326.909333pt;}
.y130{bottom:326.912000pt;}
.y201{bottom:327.368000pt;}
.y19b{bottom:327.781333pt;}
.y22{bottom:328.456000pt;}
.y109{bottom:328.630667pt;}
.y23f{bottom:330.460000pt;}
.y161{bottom:339.332000pt;}
.y23e{bottom:342.414667pt;}
.y79{bottom:342.518667pt;}
.y12f{bottom:342.852000pt;}
.y200{bottom:343.308000pt;}
.y19a{bottom:343.721333pt;}
.yb1{bottom:343.909333pt;}
.y45{bottom:344.324000pt;}
.y21{bottom:344.396000pt;}
.y108{bottom:344.605333pt;}
.yde{bottom:349.672000pt;}
.y23d{bottom:354.370667pt;}
.y160{bottom:355.272000pt;}
.y12e{bottom:358.792000pt;}
.y199{bottom:359.661333pt;}
.yb0{bottom:359.849333pt;}
.y44{bottom:360.264000pt;}
.y20{bottom:360.336000pt;}
.y107{bottom:360.545333pt;}
.y78{bottom:362.268000pt;}
.y1ff{bottom:363.184000pt;}
.y23c{bottom:366.325333pt;}
.y1c9{bottom:367.978667pt;}
.y15f{bottom:371.212000pt;}
.y12d{bottom:375.216000pt;}
.y198{bottom:375.602667pt;}
.yaf{bottom:375.789333pt;}
.y43{bottom:376.204000pt;}
.y1f{bottom:376.277333pt;}
.y23b{bottom:378.280000pt;}
.y1c8{bottom:379.934667pt;}
.y77{bottom:380.366667pt;}
.ydd{bottom:380.576000pt;}
.y106{bottom:380.734667pt;}
.y1fe{bottom:386.600000pt;}
.y15e{bottom:387.152000pt;}
.y105{bottom:389.846667pt;}
.y23a{bottom:390.236000pt;}
.y12c{bottom:391.156000pt;}
.y197{bottom:391.542667pt;}
.yae{bottom:391.730667pt;}
.y42{bottom:392.144000pt;}
.y1e{bottom:392.217333pt;}
.ydc{bottom:396.516000pt;}
.y239{bottom:402.190667pt;}
.y1fd{bottom:402.540000pt;}
.y15d{bottom:403.093333pt;}
.y76{bottom:403.157333pt;}
.y1b4{bottom:403.844000pt;}
.y12b{bottom:407.096000pt;}
.y196{bottom:407.482667pt;}
.yad{bottom:407.670667pt;}
.y41{bottom:408.084000pt;}
.y1d{bottom:408.157333pt;}
.ydb{bottom:412.456000pt;}
.y238{bottom:414.146667pt;}
.y1fc{bottom:418.480000pt;}
.y104{bottom:418.576000pt;}
.y15c{bottom:419.033333pt;}
.y75{bottom:419.097333pt;}
.y195{bottom:423.422667pt;}
.yac{bottom:423.610667pt;}
.y1c{bottom:424.097333pt;}
.y237{bottom:426.101333pt;}
.yda{bottom:428.397333pt;}
.y40{bottom:433.390667pt;}
.y1fb{bottom:434.420000pt;}
.y103{bottom:434.516000pt;}
.y15b{bottom:434.973333pt;}
.y236{bottom:438.056000pt;}
.y194{bottom:439.362667pt;}
.yab{bottom:439.550667pt;}
.y1b{bottom:440.037333pt;}
.yd9{bottom:444.337333pt;}
.y74{bottom:445.728000pt;}
.y235{bottom:450.012000pt;}
.y1fa{bottom:450.361333pt;}
.y102{bottom:450.457333pt;}
.y15a{bottom:450.913333pt;}
.y12a{bottom:451.333333pt;}
.y193{bottom:455.302667pt;}
.y1a{bottom:456.613333pt;}
.yaa{bottom:459.104000pt;}
.yd8{bottom:460.277333pt;}
.y234{bottom:461.966667pt;}
.y3f{bottom:465.638667pt;}
.y1f9{bottom:466.301333pt;}
.y101{bottom:466.397333pt;}
.y73{bottom:466.849333pt;}
.y159{bottom:468.030667pt;}
.y192{bottom:471.244000pt;}
.y19{bottom:472.553333pt;}
.y233{bottom:473.921333pt;}
.y71{bottom:475.961333pt;}
.yd7{bottom:476.922667pt;}
.ya9{bottom:478.656000pt;}
.y3e{bottom:481.578667pt;}
.y1f8{bottom:482.241333pt;}
.y100{bottom:482.337333pt;}
.y158{bottom:483.972000pt;}
.y72{bottom:484.946667pt;}
.y232{bottom:485.877333pt;}
.y191{bottom:487.184000pt;}
.y18{bottom:488.493333pt;}
.yd6{bottom:492.862667pt;}
.ya8{bottom:494.596000pt;}
.y3d{bottom:497.518667pt;}
.y231{bottom:497.832000pt;}
.y1f7{bottom:498.181333pt;}
.y157{bottom:499.912000pt;}
.y190{bottom:503.408000pt;}
.y17{bottom:504.434667pt;}
.y70{bottom:507.738667pt;}
.yd5{bottom:508.804000pt;}
.y230{bottom:509.788000pt;}
.ya7{bottom:510.536000pt;}
.y3c{bottom:513.458667pt;}
.y1f6{bottom:514.121333pt;}
.y156{bottom:515.852000pt;}
.y18f{bottom:519.348000pt;}
.y16{bottom:520.374667pt;}
.y22f{bottom:521.742667pt;}
.y6f{bottom:523.678667pt;}
.yd4{bottom:524.744000pt;}
.yff{bottom:527.194667pt;}
.y1f5{bottom:530.062667pt;}
.ya6{bottom:530.089333pt;}
.y3b{bottom:530.262667pt;}
.y155{bottom:531.792000pt;}
.y22e{bottom:533.697333pt;}
.y15{bottom:536.314667pt;}
.y18e{bottom:538.545333pt;}
.yfe{bottom:539.149333pt;}
.y6e{bottom:539.618667pt;}
.yd3{bottom:540.684000pt;}
.y22d{bottom:545.653333pt;}
.y1f4{bottom:546.002667pt;}
.ya5{bottom:546.029333pt;}
.y3a{bottom:546.202667pt;}
.y154{bottom:547.732000pt;}
.yfd{bottom:551.105333pt;}
.y18d{bottom:554.485333pt;}
.yd2{bottom:556.624000pt;}
.y22c{bottom:557.608000pt;}
.y6d{bottom:559.034667pt;}
.y14{bottom:560.252000pt;}
.y1f3{bottom:561.942667pt;}
.ya4{bottom:561.969333pt;}
.y39{bottom:562.144000pt;}
.yfc{bottom:563.060000pt;}
.y153{bottom:563.672000pt;}
.y22b{bottom:569.562667pt;}
.y18c{bottom:570.425333pt;}
.yd1{bottom:572.564000pt;}
.y6c{bottom:574.974667pt;}
.yfb{bottom:575.014667pt;}
.y1f2{bottom:577.882667pt;}
.ya3{bottom:577.909333pt;}
.y38{bottom:578.084000pt;}
.y22a{bottom:581.518667pt;}
.y18b{bottom:586.366667pt;}
.yfa{bottom:586.970667pt;}
.yd0{bottom:588.505333pt;}
.yf9{bottom:592.682667pt;}
.y229{bottom:593.473333pt;}
.y1f1{bottom:593.822667pt;}
.ya2{bottom:593.850667pt;}
.y37{bottom:594.024000pt;}
.y13{bottom:594.252000pt;}
.y6b{bottom:594.390667pt;}
.ycf{bottom:604.445333pt;}
.y228{bottom:605.429333pt;}
.y12{bottom:607.536000pt;}
.y152{bottom:609.761333pt;}
.y1f0{bottom:609.762667pt;}
.ya1{bottom:609.790667pt;}
.y36{bottom:609.964000pt;}
.y6a{bottom:610.330667pt;}
.yf8{bottom:610.881333pt;}
.yf7{bottom:616.592000pt;}
.y227{bottom:617.384000pt;}
.yce{bottom:620.385333pt;}
.y151{bottom:621.716000pt;}
.y35{bottom:625.904000pt;}
.ya0{bottom:626.182667pt;}
.y69{bottom:626.270667pt;}
.y226{bottom:629.338667pt;}
.y18a{bottom:630.072000pt;}
.y150{bottom:633.672000pt;}
.y11{bottom:634.737333pt;}
.yf6{bottom:635.322667pt;}
.ycd{bottom:636.325333pt;}
.y225{bottom:641.294667pt;}
.y34{bottom:641.844000pt;}
.y189{bottom:642.028000pt;}
.y9f{bottom:642.124000pt;}
.y68{bottom:642.210667pt;}
.y10{bottom:648.021333pt;}
.y1ef{bottom:650.061333pt;}
.ycc{bottom:652.265333pt;}
.y224{bottom:653.249333pt;}
.y137{bottom:657.581333pt;}
.y33{bottom:657.785333pt;}
.y9e{bottom:658.064000pt;}
.y67{bottom:658.152000pt;}
.yf5{bottom:659.673333pt;}
.yf{bottom:661.305333pt;}
.y1ee{bottom:662.017333pt;}
.y129{bottom:663.164000pt;}
.y223{bottom:665.204000pt;}
.y16b{bottom:665.937333pt;}
.yf4{bottom:671.629333pt;}
.y1ed{bottom:673.972000pt;}
.y9d{bottom:674.004000pt;}
.y66{bottom:674.092000pt;}
.ye{bottom:674.588000pt;}
.ycb{bottom:674.860000pt;}
.y128{bottom:675.118667pt;}
.y222{bottom:677.160000pt;}
.y127{bottom:687.074667pt;}
.yd{bottom:687.872000pt;}
.y221{bottom:689.114667pt;}
.y65{bottom:690.032000pt;}
.y32{bottom:690.529333pt;}
.y9c{bottom:695.713333pt;}
.y1d6{bottom:697.882667pt;}
.y220{bottom:701.069333pt;}
.yc{bottom:701.156000pt;}
.yf3{bottom:703.866667pt;}
.yca{bottom:705.764000pt;}
.y64{bottom:705.972000pt;}
.y31{bottom:706.469333pt;}
.y112{bottom:710.984000pt;}
.y21f{bottom:713.025333pt;}
.yb{bottom:714.438667pt;}
.yf2{bottom:715.821333pt;}
.y9b{bottom:718.553333pt;}
.yc9{bottom:721.704000pt;}
.y30{bottom:722.409333pt;}
.y21e{bottom:724.980000pt;}
.ya{bottom:727.722667pt;}
.yf1{bottom:727.777333pt;}
.y21d{bottom:736.934667pt;}
.yc8{bottom:737.644000pt;}
.y2f{bottom:738.349333pt;}
.y9{bottom:741.006667pt;}
.y63{bottom:747.776000pt;}
.y21c{bottom:748.890667pt;}
.ye6{bottom:751.686667pt;}
.yc7{bottom:753.584000pt;}
.y8{bottom:754.289333pt;}
.y1b3{bottom:757.037333pt;}
.y62{bottom:759.732000pt;}
.y21b{bottom:760.845333pt;}
.y9a{bottom:762.709333pt;}
.yc6{bottom:769.524000pt;}
.y21a{bottom:772.801333pt;}
.y99{bottom:774.664000pt;}
.y1a5{bottom:780.948000pt;}
.y219{bottom:784.756000pt;}
.yc5{bottom:785.464000pt;}
.y218{bottom:796.710667pt;}
.y88{bottom:798.574667pt;}
.y5f{bottom:799.961333pt;}
.yc4{bottom:801.405333pt;}
.y217{bottom:808.666667pt;}
.y7{bottom:816.037333pt;}
.yc3{bottom:818.050667pt;}
.y5d{bottom:819.161333pt;}
.y216{bottom:820.621333pt;}
.y6{bottom:832.474667pt;}
.y215{bottom:832.576000pt;}
.yc2{bottom:833.990667pt;}
.y214{bottom:844.532000pt;}
.y59{bottom:845.946667pt;}
.y5{bottom:848.913333pt;}
.yc1{bottom:849.930667pt;}
.y213{bottom:856.486667pt;}
.y5e{bottom:856.654667pt;}
.y5a{bottom:860.809333pt;}
.y4{bottom:865.352000pt;}
.yc0{bottom:865.870667pt;}
.y212{bottom:876.136000pt;}
.y55{bottom:877.308000pt;}
.ybf{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y5b{bottom:889.150667pt;}
.ybe{bottom:897.752000pt;}
.y211{bottom:900.810667pt;}
.y60{bottom:907.678667pt;}
.ybd{bottom:913.692000pt;}
.y210{bottom:916.750667pt;}
.y2{bottom:923.830667pt;}
.y5c{bottom:927.949333pt;}
.ybc{bottom:929.632000pt;}
.y20f{bottom:936.837333pt;}
.y56{bottom:939.842667pt;}
.ybb{bottom:945.572000pt;}
.y58{bottom:948.001333pt;}
.y1{bottom:961.024000pt;}
.yba{bottom:961.512000pt;}
.y57{bottom:965.280000pt;}
.y61{bottom:967.866667pt;}
.y20e{bottom:977.452000pt;}
.yb9{bottom:977.453333pt;}
.h1e{height:12.001777pt;}
.h1b{height:16.873686pt;}
.h1d{height:17.293675pt;}
.h1a{height:17.688959pt;}
.h1c{height:22.112086pt;}
.h1f{height:25.841113pt;}
.h3f{height:29.159939pt;}
.h9{height:29.244954pt;}
.h37{height:30.831050pt;}
.h17{height:31.880400pt;}
.h6{height:33.044173pt;}
.h5{height:33.426739pt;}
.h7{height:35.865600pt;}
.h2e{height:36.301516pt;}
.h3{height:36.449833pt;}
.h4{height:36.556100pt;}
.he{height:36.715502pt;}
.h29{height:37.972378pt;}
.h8{height:38.043849pt;}
.h3d{height:38.322576pt;}
.ha{height:39.850400pt;}
.h2{height:40.211857pt;}
.h14{height:40.229619pt;}
.h33{height:40.921229pt;}
.h2f{height:41.608445pt;}
.h3b{height:41.763387pt;}
.h2a{height:42.833365pt;}
.h2c{height:44.678788pt;}
.h32{height:44.845164pt;}
.h18{height:44.869197pt;}
.hf{height:45.464294pt;}
.h27{height:45.994097pt;}
.h3e{height:46.279784pt;}
.hc{height:46.774515pt;}
.h16{height:47.710332pt;}
.hb{height:52.911733pt;}
.h35{height:53.882790pt;}
.h23{height:54.728400pt;}
.h2d{height:55.848486pt;}
.h38{height:56.056455pt;}
.h21{height:56.851067pt;}
.h20{height:56.856400pt;}
.h28{height:57.492621pt;}
.hd{height:62.527733pt;}
.h36{height:67.292951pt;}
.h12{height:73.004100pt;}
.h24{height:75.797067pt;}
.h10{height:76.298400pt;}
.h22{height:79.699067pt;}
.h34{height:80.187230pt;}
.h30{height:82.793004pt;}
.h1{height:87.734861pt;}
.h11{height:112.245067pt;}
.h25{height:113.339345pt;}
.h15{height:115.811823pt;}
.h13{height:190.036442pt;}
.h39{height:207.663782pt;}
.h19{height:236.925813pt;}
.h26{height:277.627129pt;}
.h3c{height:290.729295pt;}
.h31{height:322.673963pt;}
.h2b{height:331.029360pt;}
.h3a{height:332.262052pt;}
.h0{height:1056.000000pt;}
.w2{width:301.270006pt;}
.w5{width:326.400000pt;}
.w1{width:334.752487pt;}
.w4{width:334.753440pt;}
.w3{width:334.761001pt;}
.w6{width:336.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x44{left:6.422278pt;}
.x37{left:16.736980pt;}
.x5a{left:19.198708pt;}
.x6f{left:21.056962pt;}
.x56{left:22.697301pt;}
.x35{left:24.973486pt;}
.x58{left:27.625053pt;}
.x59{left:29.543275pt;}
.x3f{left:30.466774pt;}
.x36{left:31.832176pt;}
.x46{left:33.362096pt;}
.x48{left:34.634493pt;}
.x55{left:36.573184pt;}
.x3e{left:38.703280pt;}
.x38{left:39.683990pt;}
.x3b{left:42.014142pt;}
.x3d{left:43.882087pt;}
.x5c{left:47.857213pt;}
.x39{left:50.250648pt;}
.x3c{left:51.948827pt;}
.x6b{left:55.204990pt;}
.x3a{left:61.996871pt;}
.x16{left:65.285333pt;}
.x65{left:69.457333pt;}
.x62{left:73.446380pt;}
.x29{left:74.889333pt;}
.x18{left:75.912000pt;}
.x15{left:78.569333pt;}
.x28{left:79.768000pt;}
.x24{left:82.352000pt;}
.x4{left:85.128000pt;}
.x27{left:91.852000pt;}
.x5b{left:97.533333pt;}
.x6{left:108.805333pt;}
.x1{left:111.290667pt;}
.x3{left:112.356000pt;}
.x47{left:113.586955pt;}
.x5{left:128.790667pt;}
.x2a{left:139.293333pt;}
.x40{left:153.090389pt;}
.x2d{left:154.929333pt;}
.x1f{left:157.716000pt;}
.x68{left:161.023480pt;}
.x71{left:163.784326pt;}
.x30{left:166.400000pt;}
.x69{left:168.321775pt;}
.x1e{left:174.222667pt;}
.x57{left:175.402526pt;}
.x63{left:178.191224pt;}
.x64{left:179.441848pt;}
.x17{left:180.825333pt;}
.x5d{left:182.011865pt;}
.x23{left:183.992000pt;}
.x6e{left:185.145366pt;}
.x66{left:189.041439pt;}
.x33{left:195.882667pt;}
.x25{left:202.457333pt;}
.x60{left:205.920619pt;}
.x5e{left:206.833714pt;}
.x20{left:213.334667pt;}
.x2e{left:215.076000pt;}
.x41{left:220.391238pt;}
.x2b{left:221.617333pt;}
.x2{left:223.876000pt;}
.x5f{left:226.475765pt;}
.x2c{left:233.706667pt;}
.x45{left:240.507909pt;}
.x70{left:246.417622pt;}
.x31{left:248.724000pt;}
.x61{left:252.604674pt;}
.x72{left:255.231656pt;}
.x32{left:256.961333pt;}
.x8{left:258.434667pt;}
.xb{left:260.061333pt;}
.x6a{left:264.410035pt;}
.x6c{left:267.358877pt;}
.x2f{left:268.480000pt;}
.x21{left:271.109333pt;}
.x67{left:274.594520pt;}
.x34{left:278.674667pt;}
.x6d{left:279.781692pt;}
.xa{left:282.112000pt;}
.x7{left:286.610667pt;}
.x26{left:288.110667pt;}
.x9{left:302.097333pt;}
.x22{left:362.622667pt;}
.x19{left:415.970667pt;}
.x75{left:421.284000pt;}
.x4e{left:423.940000pt;}
.x1a{left:429.253333pt;}
.x1c{left:430.453333pt;}
.xc{left:431.740000pt;}
.x43{left:432.708000pt;}
.x4c{left:433.924000pt;}
.xd{left:440.974667pt;}
.x1d{left:442.537333pt;}
.xf{left:444.024000pt;}
.x1b{left:447.865333pt;}
.xe{left:470.896000pt;}
.x54{left:483.312000pt;}
.x42{left:512.881333pt;}
.x73{left:525.413333pt;}
.x50{left:527.658667pt;}
.x53{left:537.770667pt;}
.x4a{left:539.102667pt;}
.x74{left:546.149333pt;}
.x49{left:563.088000pt;}
.x51{left:566.462667pt;}
.x14{left:574.380000pt;}
.x11{left:575.894667pt;}
.x13{left:599.572000pt;}
.x10{left:602.237333pt;}
.x12{left:619.557333pt;}
.x4b{left:643.233333pt;}
.x4f{left:647.717333pt;}
.x4d{left:649.466667pt;}
.x52{left:735.226667pt;}
}




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