
    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_4e899e15398ab54dc1de085a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_d375a88e3a2f8fc76d012347.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight: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_e43a8f5868c317521af9767e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight: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_8fb2a42ff7ee9f131a66f6da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight: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_907c12ca0925a674fa3929fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight: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_a43afb362e96462334743b5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight: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_5b6eae1b528009390e699d67.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922852;font-style:normal;font-weight: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_ae3853d6595af8ae6e92900b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_99d92cfbe45537c035757613.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_f612a533cbee3cae53b7915b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.876953;font-style:normal;font-weight: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_fd7734eef32637147579a267.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.686523;font-style:normal;font-weight: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_0927107e4b7cd0c1699edc18.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_0cf53ec5e2e9e2ea4cb034b9.woff2')format("woff");}.fff{font-family:fff;line-height:0.922852;font-style:normal;font-weight: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_ca83ed00b81a10c0eb6063ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_870386a61f5277cbdbd52616.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.900391;font-style:normal;font-weight: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_13e73a23e8ca871abeaacc37.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.686523;font-style:normal;font-weight: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_4d21cc2fbd092fb7e9a423df.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.876953;font-style:normal;font-weight: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_5e39aa26fe7f9a63223c3473.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_eebc630f67474a3e60d96f81.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_9ab936cf6264bcbd47d1adb9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.918945;font-style:normal;font-weight: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_4de0fb0b23c25897087fb404.woff2')format("woff");}.ff17{font-family:ff17;line-height:2.143066;font-style:normal;font-weight: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_7e49299aa3e767cc5e09f63e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.922852;font-style:normal;font-weight: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_ae8907f6c6e44c9ab31fb45e.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_bec2e754ab062765cecbcb59.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_1423cde32d93bf84a0898077.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.918945;font-style:normal;font-weight: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_14239a9160ba31b4621441f6.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_870386a61f5277cbdbd52616.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900391;font-style:normal;font-weight: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_d894a1e5f9bcafe8bec79e90.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight: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_3153184d5851000c5cc732ac.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight: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_6bafc0912cb34a56b31960ca.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.915527;font-style:normal;font-weight: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_13e73a23e8ca871abeaacc37.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.686523;font-style:normal;font-weight: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_cd159b407d00819876e95319.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.676270;font-style:normal;font-weight: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_761e7a2f2a6a2b9c4768c6d8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.876953;font-style:normal;font-weight: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_c4ecb74b71752de7d474e653.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.728027;font-style:normal;font-weight: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_3fdb214cbf98aac298ebb057.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.736816;font-style:normal;font-weight: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_69cf080d6bdb3de03cfac374.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.900391;font-style:normal;font-weight: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_cd159b407d00819876e95319.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.676270;font-style:normal;font-weight: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_b915dd59f12fcba7033005ef.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_66ae8940646b4ea1c8b3f729.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.693848;font-style:normal;font-weight: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_38262b52da64c90b283ec54f.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_c4ecb74b71752de7d474e653.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.728027;font-style:normal;font-weight: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_c040c9b68c8ade3b884f637b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.918945;font-style:normal;font-weight: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_1423cde32d93bf84a0898077.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.918945;font-style:normal;font-weight: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_e23d474b98da8b56c9388b66.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_6afb38daf6ab95fc9114fe72.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.921000;font-style:normal;font-weight: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_a16f255888c304de008adaa1.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_2a66c987736fc4f1a0eb451f.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_b43f414cd22927d5a5d658a1.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.919000;font-style:normal;font-weight: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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.284668;font-style:normal;font-weight: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_76f89b19f22c4dc0f81c9b14.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.432129;font-style:normal;font-weight: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_a12926c207225281a226b5d2.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.432129;font-style:normal;font-weight: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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268864,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.vb{vertical-align:-16.938000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.972000px;}
.v4{vertical-align:10.758000px;}
.v5{vertical-align:17.736000px;}
.v8{vertical-align:20.916000px;}
.v1{vertical-align:26.028000px;}
.v7{vertical-align:34.872000px;}
.vc{vertical-align:36.792000px;}
.v9{vertical-align:43.764000px;}
.va{vertical-align:47.418000px;}
.ls36{letter-spacing:-0.668747px;}
.ls37{letter-spacing:-0.649640px;}
.ls38{letter-spacing:-0.114642px;}
.ls16{letter-spacing:-0.079056px;}
.ls15{letter-spacing:-0.072144px;}
.ls7e{letter-spacing:-0.030060px;}
.ls34{letter-spacing:-0.019107px;}
.ls7b{letter-spacing:-0.018036px;}
.ls18{letter-spacing:-0.013176px;}
.ls7c{letter-spacing:-0.012024px;}
.ls13{letter-spacing:-0.010800px;}
.ls7d{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000750px;}
.ls1f{letter-spacing:0.001440px;}
.ls21{letter-spacing:0.003000px;}
.ls1{letter-spacing:0.004788px;}
.ls12{letter-spacing:0.009576px;}
.ls63{letter-spacing:0.010890px;}
.lsb{letter-spacing:0.013176px;}
.ls2f{letter-spacing:0.014940px;}
.ls60{letter-spacing:0.015690px;}
.ls46{letter-spacing:0.016680px;}
.lsf{letter-spacing:0.019152px;}
.ls17{letter-spacing:0.019764px;}
.ls32{letter-spacing:0.020940px;}
.ls68{letter-spacing:0.020970px;}
.ls6b{letter-spacing:0.021690px;}
.ls3f{letter-spacing:0.022680px;}
.ls7a{letter-spacing:0.024048px;}
.lsd{letter-spacing:0.026352px;}
.ls2{letter-spacing:0.028728px;}
.lsa{letter-spacing:0.032940px;}
.ls10{letter-spacing:0.033516px;}
.ls11{letter-spacing:0.038304px;}
.ls6{letter-spacing:0.039528px;}
.ls3{letter-spacing:0.047880px;}
.ls4{letter-spacing:0.052704px;}
.ls5{letter-spacing:0.059292px;}
.ls8{letter-spacing:0.065880px;}
.ls14{letter-spacing:0.067104px;}
.lsc{letter-spacing:0.072468px;}
.ls9{letter-spacing:0.079056px;}
.ls7{letter-spacing:0.085644px;}
.lse{letter-spacing:0.092232px;}
.ls2a{letter-spacing:0.458569px;}
.ls1c{letter-spacing:0.615150px;}
.ls2b{letter-spacing:0.668747px;}
.ls35{letter-spacing:0.687854px;}
.ls5b{letter-spacing:1.087500px;}
.ls41{letter-spacing:1.953510px;}
.ls5d{letter-spacing:2.275740px;}
.ls44{letter-spacing:2.281740px;}
.ls57{letter-spacing:2.422200px;}
.ls4a{letter-spacing:2.538390px;}
.ls48{letter-spacing:2.544390px;}
.ls5a{letter-spacing:2.682660px;}
.ls2d{letter-spacing:2.973120px;}
.ls42{letter-spacing:2.979120px;}
.ls24{letter-spacing:2.986740px;}
.ls20{letter-spacing:2.992740px;}
.ls1d{letter-spacing:2.999580px;}
.ls1e{letter-spacing:3.005580px;}
.ls47{letter-spacing:4.197750px;}
.ls28{letter-spacing:4.600740px;}
.ls6e{letter-spacing:4.606740px;}
.ls23{letter-spacing:4.842270px;}
.ls1b{letter-spacing:5.892000px;}
.ls2e{letter-spacing:11.953440px;}
.ls4b{letter-spacing:11.955000px;}
.ls4d{letter-spacing:11.959440px;}
.ls3d{letter-spacing:15.907740px;}
.ls58{letter-spacing:15.913740px;}
.ls50{letter-spacing:15.924060px;}
.ls4f{letter-spacing:15.935160px;}
.ls77{letter-spacing:16.335000px;}
.ls3e{letter-spacing:17.111580px;}
.ls51{letter-spacing:17.117580px;}
.ls74{letter-spacing:18.888870px;}
.ls59{letter-spacing:18.915120px;}
.ls3c{letter-spacing:18.941580px;}
.ls78{letter-spacing:19.337580px;}
.ls67{letter-spacing:19.678740px;}
.ls3b{letter-spacing:19.891740px;}
.ls53{letter-spacing:19.897740px;}
.ls43{letter-spacing:19.905060px;}
.ls6c{letter-spacing:19.908870px;}
.ls69{letter-spacing:19.921440px;}
.ls6a{letter-spacing:19.927440px;}
.ls62{letter-spacing:19.935690px;}
.ls66{letter-spacing:21.188010px;}
.ls65{letter-spacing:21.223440px;}
.ls64{letter-spacing:21.402870px;}
.ls4c{letter-spacing:22.207740px;}
.ls6f{letter-spacing:22.386870px;}
.ls25{letter-spacing:22.740870px;}
.ls3a{letter-spacing:22.899120px;}
.ls4e{letter-spacing:22.925580px;}
.ls39{letter-spacing:22.925910px;}
.ls5c{letter-spacing:23.394870px;}
.ls27{letter-spacing:23.401440px;}
.ls45{letter-spacing:23.407440px;}
.ls79{letter-spacing:23.413114px;}
.ls61{letter-spacing:25.105440px;}
.ls70{letter-spacing:25.409580px;}
.ls22{letter-spacing:26.226870px;}
.ls49{letter-spacing:26.405580px;}
.ls26{letter-spacing:26.538870px;}
.ls30{letter-spacing:26.547000px;}
.ls76{letter-spacing:26.673000px;}
.ls71{letter-spacing:26.747580px;}
.ls73{letter-spacing:28.531440px;}
.ls1a{letter-spacing:30.048000px;}
.ls31{letter-spacing:30.233580px;}
.ls72{letter-spacing:30.684870px;}
.ls56{letter-spacing:30.939000px;}
.ls29{letter-spacing:32.064870px;}
.ls5f{letter-spacing:33.193440px;}
.ls33{letter-spacing:33.357000px;}
.ls75{letter-spacing:34.757580px;}
.ls5e{letter-spacing:35.112870px;}
.ls2c{letter-spacing:36.618870px;}
.ls54{letter-spacing:42.521580px;}
.ls55{letter-spacing:59.773440px;}
.ls52{letter-spacing:59.779440px;}
.ls19{letter-spacing:818.805000px;}
.ls6d{letter-spacing:1025.113440px;}
.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;}
}
.wsfc{word-spacing:-54.371340px;}
.ws17f{word-spacing:-22.416000px;}
.ws147{word-spacing:-19.510886px;}
.ws141{word-spacing:-17.932800px;}
.ws3{word-spacing:-16.456824px;}
.wsd8{word-spacing:-16.183672px;}
.wsda{word-spacing:-14.865286px;}
.wsd9{word-spacing:-14.846179px;}
.ws2{word-spacing:-13.358520px;}
.ws1{word-spacing:-13.339368px;}
.wsdb{word-spacing:-12.289808px;}
.wsf2{word-spacing:-3.534804px;}
.ws188{word-spacing:-2.725786px;}
.ws18e{word-spacing:-2.582323px;}
.ws167{word-spacing:-2.151936px;}
.ws151{word-spacing:-1.721549px;}
.ws16e{word-spacing:-1.219430px;}
.ws181{word-spacing:-0.860774px;}
.wsef{word-spacing:-0.687854px;}
.wsf0{word-spacing:-0.267499px;}
.ws159{word-spacing:-0.215194px;}
.ws6{word-spacing:-0.159372px;}
.ws195{word-spacing:-0.144288px;}
.ws190{word-spacing:-0.126252px;}
.ws196{word-spacing:-0.114228px;}
.ws50{word-spacing:-0.103290px;}
.ws7b{word-spacing:-0.071730px;}
.ws4e{word-spacing:-0.065454px;}
.wsf3{word-spacing:-0.047820px;}
.ws21{word-spacing:-0.014364px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.010800px;}
.ws4{word-spacing:0.014364px;}
.wsee{word-spacing:0.019107px;}
.ws1c{word-spacing:0.019764px;}
.ws17{word-spacing:0.026352px;}
.ws15{word-spacing:0.052704px;}
.ws18{word-spacing:0.072468px;}
.ws16{word-spacing:0.079056px;}
.ws1d{word-spacing:0.092232px;}
.ws7{word-spacing:0.162324px;}
.ws193{word-spacing:0.192384px;}
.ws194{word-spacing:0.222444px;}
.ws14a{word-spacing:0.502118px;}
.ws178{word-spacing:0.573850px;}
.wsf1{word-spacing:0.649640px;}
.ws13{word-spacing:0.751032px;}
.ws14{word-spacing:0.777384px;}
.ws164{word-spacing:1.578086px;}
.ws168{word-spacing:1.649818px;}
.ws171{word-spacing:1.721549px;}
.ws169{word-spacing:1.793280px;}
.wsf{word-spacing:1.824876px;}
.ws162{word-spacing:1.865011px;}
.ws160{word-spacing:1.884131px;}
.ws150{word-spacing:2.008474px;}
.ws175{word-spacing:2.223667px;}
.ws15c{word-spacing:2.367130px;}
.ws173{word-spacing:2.438861px;}
.ws17c{word-spacing:2.654054px;}
.ws15a{word-spacing:2.689795px;}
.ws14e{word-spacing:3.514829px;}
.ws165{word-spacing:3.730022px;}
.ws16d{word-spacing:3.865511px;}
.ws177{word-spacing:3.868076px;}
.ws13f{word-spacing:3.873485px;}
.ws172{word-spacing:3.889363px;}
.ws163{word-spacing:3.945216px;}
.ws157{word-spacing:4.805990px;}
.ws187{word-spacing:4.949453px;}
.wsb{word-spacing:5.092524px;}
.ws16a{word-spacing:5.236378px;}
.ws161{word-spacing:5.308109px;}
.ws18f{word-spacing:5.451571px;}
.ws146{word-spacing:5.595034px;}
.ws174{word-spacing:5.666765px;}
.wsc{word-spacing:5.764500px;}
.wsd{word-spacing:5.784264px;}
.ws15b{word-spacing:5.810227px;}
.ws152{word-spacing:5.881958px;}
.ws185{word-spacing:5.953690px;}
.ws154{word-spacing:6.097152px;}
.ws17e{word-spacing:6.742733px;}
.ws14f{word-spacing:6.814464px;}
.ws176{word-spacing:6.886195px;}
.ws166{word-spacing:7.029658px;}
.ws14b{word-spacing:7.173120px;}
.ws1a{word-spacing:7.220448px;}
.ws19{word-spacing:7.569612px;}
.ws17d{word-spacing:7.675238px;}
.ws158{word-spacing:8.033894px;}
.ws15d{word-spacing:8.105626px;}
.ws18b{word-spacing:8.177357px;}
.ws189{word-spacing:8.320819px;}
.ws16b{word-spacing:8.464282px;}
.ws18d{word-spacing:8.679475px;}
.ws145{word-spacing:8.751206px;}
.ws180{word-spacing:8.966400px;}
.ws184{word-spacing:9.038131px;}
.ws155{word-spacing:9.181594px;}
.wse{word-spacing:9.374724px;}
.ws15f{word-spacing:9.755443px;}
.ws182{word-spacing:10.042368px;}
.ws1e{word-spacing:10.468332px;}
.ws3e{word-spacing:10.974690px;}
.ws15e{word-spacing:11.118336px;}
.ws70{word-spacing:11.189880px;}
.ws18a{word-spacing:11.261798px;}
.ws16c{word-spacing:11.405261px;}
.ws18c{word-spacing:11.548723px;}
.ws156{word-spacing:11.692186px;}
.ws140{word-spacing:11.763917px;}
.wse7{word-spacing:11.835450px;}
.wsf7{word-spacing:11.907180px;}
.ws186{word-spacing:12.050842px;}
.ws179{word-spacing:12.481229px;}
.wsa{word-spacing:12.648960px;}
.ws183{word-spacing:12.839885px;}
.ws20{word-spacing:13.334112px;}
.ws1f{word-spacing:13.353876px;}
.ws14c{word-spacing:14.489702px;}
.ws17b{word-spacing:14.561434px;}
.ws192{word-spacing:14.975892px;}
.ws191{word-spacing:14.987916px;}
.ws139{word-spacing:14.991570px;}
.ws17a{word-spacing:14.991821px;}
.ws1b{word-spacing:15.185340px;}
.ws148{word-spacing:15.207014px;}
.ws98{word-spacing:15.278490px;}
.ws69{word-spacing:15.350220px;}
.ws13d{word-spacing:15.350477px;}
.wsb3{word-spacing:15.421950px;}
.ws10{word-spacing:15.488388px;}
.wsf9{word-spacing:15.493680px;}
.wsa9{word-spacing:15.637140px;}
.ws72{word-spacing:15.780600px;}
.ws66{word-spacing:15.852330px;}
.ws143{word-spacing:16.067789px;}
.ws28{word-spacing:16.210980px;}
.ws108{word-spacing:16.426170px;}
.ws88{word-spacing:16.569630px;}
.wsaf{word-spacing:16.641360px;}
.wsc7{word-spacing:16.784820px;}
.wsb1{word-spacing:16.856550px;}
.ws14d{word-spacing:16.856832px;}
.ws2c{word-spacing:16.928280px;}
.ws61{word-spacing:17.000010px;}
.wsde{word-spacing:17.071740px;}
.ws77{word-spacing:17.143470px;}
.wsd4{word-spacing:17.286930px;}
.ws76{word-spacing:17.358660px;}
.ws91{word-spacing:17.430390px;}
.ws94{word-spacing:17.502120px;}
.ws149{word-spacing:17.574144px;}
.wsba{word-spacing:17.645580px;}
.ws13e{word-spacing:17.717606px;}
.ws125{word-spacing:17.789040px;}
.ws74{word-spacing:17.860770px;}
.ws5a{word-spacing:17.932500px;}
.ws51{word-spacing:18.004230px;}
.ws127{word-spacing:18.075960px;}
.ws92{word-spacing:18.147690px;}
.ws8e{word-spacing:18.172512px;}
.wscb{word-spacing:18.219420px;}
.ws8d{word-spacing:18.292068px;}
.ws144{word-spacing:18.363187px;}
.wsa6{word-spacing:18.434610px;}
.wsd5{word-spacing:18.578070px;}
.ws4d{word-spacing:18.721530px;}
.ws11a{word-spacing:18.793260px;}
.ws60{word-spacing:18.864990px;}
.ws71{word-spacing:18.936720px;}
.ws4a{word-spacing:19.008450px;}
.wsdc{word-spacing:19.080180px;}
.wsb6{word-spacing:19.151910px;}
.wsdf{word-spacing:19.223640px;}
.wsa5{word-spacing:19.295370px;}
.ws4b{word-spacing:19.367100px;}
.wsca{word-spacing:19.383030px;}
.ws30{word-spacing:19.510560px;}
.ws6d{word-spacing:19.654020px;}
.ws87{word-spacing:19.725750px;}
.ws11c{word-spacing:19.787940px;}
.wsf8{word-spacing:19.791750px;}
.ws9e{word-spacing:19.797480px;}
.wsfd{word-spacing:19.823400px;}
.ws8{word-spacing:19.836468px;}
.ws8c{word-spacing:19.846296px;}
.ws27{word-spacing:20.012670px;}
.wsbe{word-spacing:20.084400px;}
.ws6f{word-spacing:20.227860px;}
.ws6e{word-spacing:20.299590px;}
.ws116{word-spacing:20.397390px;}
.ws39{word-spacing:20.443050px;}
.ws118{word-spacing:20.490240px;}
.ws115{word-spacing:20.586510px;}
.ws117{word-spacing:20.619660px;}
.ws97{word-spacing:20.658240px;}
.ws153{word-spacing:20.658586px;}
.ws10e{word-spacing:20.801700px;}
.ws81{word-spacing:20.873430px;}
.ws12b{word-spacing:20.945160px;}
.ws75{word-spacing:21.088620px;}
.ws16f{word-spacing:21.088973px;}
.ws109{word-spacing:21.303810px;}
.ws84{word-spacing:21.447270px;}
.ws107{word-spacing:21.519000px;}
.ws131{word-spacing:21.590730px;}
.wsae{word-spacing:21.662460px;}
.ws4c{word-spacing:21.734190px;}
.ws9a{word-spacing:21.805920px;}
.ws67{word-spacing:21.877650px;}
.ws5b{word-spacing:21.949380px;}
.ws34{word-spacing:22.021110px;}
.wsaa{word-spacing:22.164570px;}
.wsc0{word-spacing:22.236300px;}
.wsb4{word-spacing:22.308030px;}
.ws93{word-spacing:22.379760px;}
.ws132{word-spacing:22.451490px;}
.wsf6{word-spacing:22.495140px;}
.ws11f{word-spacing:22.514250px;}
.ws35{word-spacing:22.523220px;}
.wsd6{word-spacing:22.585050px;}
.ws7a{word-spacing:22.594950px;}
.ws24{word-spacing:22.666680px;}
.ws40{word-spacing:22.738410px;}
.ws121{word-spacing:22.810140px;}
.ws6a{word-spacing:22.881870px;}
.ws45{word-spacing:22.953600px;}
.ws138{word-spacing:23.025330px;}
.ws170{word-spacing:23.025715px;}
.ws9d{word-spacing:23.097060px;}
.ws2e{word-spacing:23.168790px;}
.ws126{word-spacing:23.240520px;}
.ws22{word-spacing:23.301624px;}
.ws25{word-spacing:23.312250px;}
.ws8b{word-spacing:23.313420px;}
.ws106{word-spacing:23.318580px;}
.wsfb{word-spacing:23.334030px;}
.ws13c{word-spacing:23.367292px;}
.ws26{word-spacing:23.383980px;}
.wsab{word-spacing:23.527440px;}
.wsb0{word-spacing:23.670900px;}
.ws68{word-spacing:23.742630px;}
.wsa8{word-spacing:23.814360px;}
.ws6b{word-spacing:23.886090px;}
.wscf{word-spacing:23.957820px;}
.wscd{word-spacing:24.003030px;}
.wsdd{word-spacing:24.029550px;}
.ws2b{word-spacing:24.101280px;}
.ws8f{word-spacing:24.173010px;}
.ws112{word-spacing:24.236400px;}
.ws49{word-spacing:24.244740px;}
.ws114{word-spacing:24.255030px;}
.ws11b{word-spacing:24.316470px;}
.ws113{word-spacing:24.372240px;}
.wsc4{word-spacing:24.388200px;}
.ws120{word-spacing:24.459930px;}
.ws9{word-spacing:24.507360px;}
.ws33{word-spacing:24.531660px;}
.ws9b{word-spacing:24.603390px;}
.ws78{word-spacing:24.675120px;}
.wsa3{word-spacing:24.746850px;}
.wsc9{word-spacing:24.796950px;}
.ws10d{word-spacing:24.818580px;}
.wsa2{word-spacing:24.890310px;}
.ws79{word-spacing:24.962040px;}
.ws64{word-spacing:25.033770px;}
.wsbb{word-spacing:25.105500px;}
.ws119{word-spacing:25.164450px;}
.ws8a{word-spacing:25.177230px;}
.ws73{word-spacing:25.248960px;}
.ws37{word-spacing:25.320690px;}
.wsd1{word-spacing:25.392420px;}
.ws9c{word-spacing:25.464150px;}
.ws38{word-spacing:25.535880px;}
.wsd2{word-spacing:25.607610px;}
.wsce{word-spacing:25.679340px;}
.ws32{word-spacing:25.751070px;}
.ws2f{word-spacing:25.822800px;}
.ws58{word-spacing:25.894530px;}
.ws12f{word-spacing:25.966260px;}
.ws2d{word-spacing:26.037990px;}
.ws54{word-spacing:26.109720px;}
.ws10f{word-spacing:26.181450px;}
.ws52{word-spacing:26.181900px;}
.ws96{word-spacing:26.253180px;}
.wseb{word-spacing:26.324910px;}
.wsd0{word-spacing:26.436870px;}
.wsc1{word-spacing:26.448480px;}
.ws83{word-spacing:26.468370px;}
.ws59{word-spacing:26.540100px;}
.wsc3{word-spacing:26.611830px;}
.wsa0{word-spacing:26.755290px;}
.ws29{word-spacing:26.827020px;}
.ws101{word-spacing:27.042210px;}
.ws62{word-spacing:27.185670px;}
.ws85{word-spacing:27.257400px;}
.ws12c{word-spacing:27.329130px;}
.ws133{word-spacing:27.400860px;}
.ws89{word-spacing:27.472590px;}
.ws53{word-spacing:27.544320px;}
.wsc8{word-spacing:27.616050px;}
.wse9{word-spacing:27.687780px;}
.wsb8{word-spacing:27.759510px;}
.ws104{word-spacing:27.827760px;}
.ws3f{word-spacing:27.831240px;}
.ws47{word-spacing:27.902970px;}
.ws36{word-spacing:27.974700px;}
.ws46{word-spacing:28.046430px;}
.ws65{word-spacing:28.118160px;}
.ws3b{word-spacing:28.189890px;}
.ws3d{word-spacing:28.261620px;}
.ws48{word-spacing:28.333350px;}
.ws12a{word-spacing:28.405080px;}
.ws10c{word-spacing:28.476810px;}
.ws82{word-spacing:28.548540px;}
.wsbc{word-spacing:28.573920px;}
.ws63{word-spacing:28.620270px;}
.wsb2{word-spacing:28.692000px;}
.ws80{word-spacing:28.710210px;}
.wsb9{word-spacing:28.763730px;}
.ws13a{word-spacing:28.835460px;}
.ws41{word-spacing:28.907190px;}
.ws7f{word-spacing:29.050650px;}
.wse8{word-spacing:29.122380px;}
.ws99{word-spacing:29.194110px;}
.wsc5{word-spacing:29.265840px;}
.ws7d{word-spacing:29.481030px;}
.ws43{word-spacing:29.552760px;}
.ws57{word-spacing:29.624490px;}
.ws55{word-spacing:29.696220px;}
.ws10a{word-spacing:29.767950px;}
.wsa1{word-spacing:29.839680px;}
.ws31{word-spacing:29.911410px;}
.wsa7{word-spacing:29.932170px;}
.ws56{word-spacing:29.983140px;}
.ws100{word-spacing:30.054870px;}
.wsd3{word-spacing:30.126600px;}
.ws11e{word-spacing:30.198330px;}
.wsfe{word-spacing:30.270060px;}
.ws6c{word-spacing:30.341790px;}
.ws90{word-spacing:30.485250px;}
.ws136{word-spacing:30.556980px;}
.ws135{word-spacing:30.628710px;}
.ws11d{word-spacing:30.685140px;}
.ws9f{word-spacing:30.700440px;}
.ws124{word-spacing:30.843900px;}
.ws5e{word-spacing:30.915630px;}
.ws129{word-spacing:30.937050px;}
.ws42{word-spacing:30.987360px;}
.ws3a{word-spacing:31.059090px;}
.ws44{word-spacing:31.202550px;}
.wsa4{word-spacing:31.274280px;}
.wsad{word-spacing:31.561200px;}
.wsd7{word-spacing:31.599300px;}
.ws86{word-spacing:31.632930px;}
.ws5d{word-spacing:31.704660px;}
.wsfa{word-spacing:31.776390px;}
.wsac{word-spacing:31.848120px;}
.wscc{word-spacing:31.868850px;}
.ws123{word-spacing:31.919850px;}
.wsb7{word-spacing:31.991580px;}
.wsb5{word-spacing:32.063310px;}
.wse5{word-spacing:32.206770px;}
.wsbd{word-spacing:32.278500px;}
.ws95{word-spacing:32.350230px;}
.ws7c{word-spacing:32.421960px;}
.ws2a{word-spacing:32.493690px;}
.wsc2{word-spacing:32.551920px;}
.wsed{word-spacing:32.565420px;}
.ws5c{word-spacing:32.924070px;}
.ws12d{word-spacing:33.139260px;}
.ws122{word-spacing:33.190800px;}
.ws7e{word-spacing:33.210990px;}
.ws130{word-spacing:33.282720px;}
.wsbf{word-spacing:33.426180px;}
.ws110{word-spacing:33.856560px;}
.ws137{word-spacing:34.071750px;}
.ws102{word-spacing:34.143480px;}
.ws111{word-spacing:34.286940px;}
.ws4f{word-spacing:34.395570px;}
.ws103{word-spacing:34.932510px;}
.ws10b{word-spacing:34.997220px;}
.ws105{word-spacing:35.291160px;}
.ws3c{word-spacing:35.305410px;}
.wse2{word-spacing:35.721540px;}
.wse1{word-spacing:35.793270px;}
.wse0{word-spacing:36.109980px;}
.ws5f{word-spacing:36.963180px;}
.ws12e{word-spacing:37.184400px;}
.wse4{word-spacing:37.371330px;}
.ws12{word-spacing:37.821708px;}
.ws11{word-spacing:37.834884px;}
.ws142{word-spacing:37.874074px;}
.wsea{word-spacing:38.447280px;}
.ws134{word-spacing:38.519010px;}
.wse6{word-spacing:41.818590px;}
.wse3{word-spacing:42.636450px;}
.wsff{word-spacing:42.822810px;}
.wsf4{word-spacing:43.253190px;}
.wsec{word-spacing:45.261630px;}
.wsc6{word-spacing:60.114780px;}
.wsf5{word-spacing:71.227890px;}
.ws23{word-spacing:114.755190px;}
.ws13b{word-spacing:767.486112px;}
.ws128{word-spacing:786.012546px;}
._a{margin-left:-20.303100px;}
._7{margin-left:-17.689266px;}
._20{margin-left:-16.610400px;}
._2c{margin-left:-14.245794px;}
._2d{margin-left:-13.191426px;}
._31{margin-left:-11.815062px;}
._b{margin-left:-10.625670px;}
._d{margin-left:-9.561960px;}
._c{margin-left:-7.729182px;}
._2a{margin-left:-6.488856px;}
._6{margin-left:-5.349900px;}
._22{margin-left:-4.348158px;}
._3{margin-left:-3.338154px;}
._10{margin-left:-2.202570px;}
._1{margin-left:-1.054080px;}
._0{width:1.246608px;}
._1f{width:2.289750px;}
._2f{width:3.336930px;}
._11{width:4.527504px;}
._30{width:6.006672px;}
._2{width:7.246800px;}
._1b{width:9.397272px;}
._1d{width:11.751480px;}
._3e{width:13.547502px;}
._27{width:16.033140px;}
._9{width:17.877474px;}
._26{width:19.088730px;}
._14{width:20.660652px;}
._8{width:22.366872px;}
._34{width:23.464260px;}
._13{width:24.539400px;}
._18{width:25.721424px;}
._17{width:26.935524px;}
._16{width:28.914180px;}
._4{width:29.977932px;}
._e{width:31.440360px;}
._12{width:33.192342px;}
._2b{width:34.525980px;}
._f{width:35.992656px;}
._41{width:37.044486px;}
._19{width:38.187306px;}
._25{width:40.151502px;}
._24{width:42.138720px;}
._2e{width:43.230336px;}
._3d{width:45.811182px;}
._1e{width:48.074580px;}
._33{width:49.508856px;}
._1c{width:51.247122px;}
._15{width:52.251480px;}
._1a{width:54.350280px;}
._28{width:56.746170px;}
._32{width:58.229838px;}
._29{width:61.366500px;}
._40{width:65.849242px;}
._3b{width:70.639860px;}
._3a{width:72.282780px;}
._23{width:95.135148px;}
._21{width:114.858480px;}
._39{width:142.504710px;}
._3c{width:321.227244px;}
._36{width:352.706784px;}
._37{width:369.531384px;}
._38{width:401.306964px;}
._35{width:441.582601px;}
._3f{width:792.843744px;}
._5{width:825.561744px;}
.fc3{color:rgb(36,33,29);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:41.844000px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:46.544777px;}
.fsf{font-size:47.820000px;}
.fs5{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs11{font-size:59.778000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs13{font-size:62.059702px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:65.454000px;}
.fs14{font-size:65.454600px;}
.fs9{font-size:65.880000px;}
.fsd{font-size:71.730000px;}
.fs16{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fse{font-size:86.076000px;}
.fs17{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:103.290000px;}
.fs15{font-size:103.292400px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y144{bottom:16.451171px;}
.y5{bottom:66.525004px;}
.y42{bottom:67.350450px;}
.y24b{bottom:77.520450px;}
.y9f{bottom:78.991500px;}
.y72{bottom:82.726500px;}
.y141{bottom:82.800406px;}
.y142{bottom:83.292413px;}
.y24a{bottom:95.520450px;}
.y43{bottom:95.610450px;}
.y4{bottom:97.125005px;}
.y140{bottom:115.248956px;}
.y9e{bottom:123.823500px;}
.y71{bottom:127.558500px;}
.y13f{bottom:133.658600px;}
.y22{bottom:139.264499px;}
.ycb{bottom:141.756000px;}
.y9d{bottom:145.492500px;}
.y70{bottom:149.227500px;}
.y13e{bottom:151.561907px;}
.yca{bottom:159.688500px;}
.y41{bottom:160.141200px;}
.y207{bottom:162.271500px;}
.y9c{bottom:167.160000px;}
.y186{bottom:167.161500px;}
.y1af{bottom:167.259000px;}
.y1d0{bottom:167.329500px;}
.y13d{bottom:169.479544px;}
.y6f{bottom:170.896500px;}
.yc9{bottom:177.621000px;}
.y40{bottom:179.040600px;}
.y159{bottom:181.713000px;}
.y226{bottom:182.976000px;}
.y206{bottom:183.940500px;}
.yf2{bottom:188.829000px;}
.y1ae{bottom:188.928000px;}
.y1cf{bottom:188.997000px;}
.y9b{bottom:190.348500px;}
.y6e{bottom:192.565500px;}
.y143{bottom:194.170631px;}
.y19{bottom:196.933500px;}
.y3f{bottom:198.030390px;}
.yc8{bottom:200.977500px;}
.y136{bottom:201.339000px;}
.y158{bottom:203.380500px;}
.y225{bottom:204.645000px;}
.y205{bottom:205.608000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yf1{bottom:210.498000px;}
.y1ad{bottom:210.597000px;}
.y1ce{bottom:210.666000px;}
.y9a{bottom:212.017500px;}
.y6d{bottom:214.234500px;}
.y3e{bottom:217.020300px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y135{bottom:223.008000px;}
.y157{bottom:225.049500px;}
.y113{bottom:232.167000px;}
.y1ac{bottom:232.266000px;}
.y1cd{bottom:232.335000px;}
.yf0{bottom:233.635500px;}
.y99{bottom:233.686500px;}
.yc7{bottom:233.908500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y6c{bottom:239.599500px;}
.y3d{bottom:240.600450px;}
.y13c{bottom:241.637323px;}
.y224{bottom:242.128500px;}
.y204{bottom:244.056000px;}
.y134{bottom:244.677000px;}
.y156{bottom:246.718500px;}
.y112{bottom:253.836000px;}
.y1ab{bottom:253.935000px;}
.y1cc{bottom:254.004000px;}
.y185{bottom:254.013000px;}
.yef{bottom:255.304500px;}
.y98{bottom:255.355500px;}
.yc6{bottom:255.577500px;}
.y3c{bottom:259.509360px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y6b{bottom:261.268500px;}
.y223{bottom:263.797500px;}
.y203{bottom:265.725000px;}
.y133{bottom:266.344500px;}
.y155{bottom:268.387500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y111{bottom:275.505000px;}
.y1aa{bottom:275.602500px;}
.y1cb{bottom:275.673000px;}
.y184{bottom:275.682000px;}
.yee{bottom:276.973500px;}
.yc5{bottom:277.245000px;}
.y3b{bottom:278.400450px;}
.y97{bottom:278.544000px;}
.y6a{bottom:282.937500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y132{bottom:288.013500px;}
.y13b{bottom:289.576914px;}
.y154{bottom:290.056500px;}
.y110{bottom:297.172500px;}
.y1a9{bottom:297.271500px;}
.y1ca{bottom:297.340500px;}
.y183{bottom:297.349500px;}
.y3a{bottom:297.390300px;}
.yed{bottom:298.642500px;}
.yc4{bottom:298.914000px;}
.y96{bottom:300.211500px;}
.y222{bottom:301.282500px;}
.y202{bottom:304.173000px;}
.y69{bottom:304.605000px;}
.y131{bottom:309.682500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y153{bottom:311.725500px;}
.y10f{bottom:318.841500px;}
.y1a8{bottom:318.940500px;}
.y182{bottom:319.018500px;}
.y1c9{bottom:319.177500px;}
.yec{bottom:320.311500px;}
.yc3{bottom:320.583000px;}
.y95{bottom:321.880500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y221{bottom:322.950000px;}
.y201{bottom:325.842000px;}
.y68{bottom:326.274000px;}
.y139{bottom:330.747833px;}
.y130{bottom:331.351500px;}
.y152{bottom:333.393000px;}
.y1a7{bottom:340.609500px;}
.y181{bottom:340.687500px;}
.y1c8{bottom:340.846500px;}
.y10e{bottom:341.572500px;}
.yeb{bottom:341.979000px;}
.yc2{bottom:342.252000px;}
.y13a{bottom:343.325049px;}
.y94{bottom:343.549500px;}
.y138{bottom:347.199004px;}
.y200{bottom:347.511000px;}
.y67{bottom:347.943000px;}
.y10{bottom:348.133500px;}
.y12f{bottom:353.020500px;}
.y151{bottom:355.062000px;}
.y220{bottom:360.435000px;}
.y1a6{bottom:362.278500px;}
.y180{bottom:362.356500px;}
.y1c7{bottom:362.515500px;}
.y10d{bottom:363.240000px;}
.yea{bottom:363.648000px;}
.yc1{bottom:363.921000px;}
.y93{bottom:365.218500px;}
.y66{bottom:369.612000px;}
.y39{bottom:370.471080px;}
.y12e{bottom:374.689500px;}
.y150{bottom:376.731000px;}
.y21f{bottom:382.104000px;}
.y17f{bottom:384.025500px;}
.y1a5{bottom:384.045000px;}
.y1c6{bottom:384.184500px;}
.y10c{bottom:384.909000px;}
.ye9{bottom:385.317000px;}
.yc0{bottom:385.590000px;}
.y1ff{bottom:385.959000px;}
.yf{bottom:386.785499px;}
.y92{bottom:386.887500px;}
.y38{bottom:389.460990px;}
.y65{bottom:391.281000px;}
.y12d{bottom:393.667500px;}
.y12c{bottom:396.357000px;}
.y14f{bottom:398.400000px;}
.y21e{bottom:403.771500px;}
.y17e{bottom:405.693000px;}
.y1a4{bottom:405.714000px;}
.y1c5{bottom:405.853500px;}
.y10b{bottom:406.578000px;}
.ye8{bottom:406.986000px;}
.ybf{bottom:407.257500px;}
.y1fe{bottom:407.628000px;}
.ye{bottom:408.044999px;}
.y37{bottom:408.450900px;}
.y91{bottom:408.556500px;}
.y64{bottom:412.950000px;}
.y12b{bottom:418.026000px;}
.y14e{bottom:420.069000px;}
.y17d{bottom:427.362000px;}
.y1a3{bottom:427.383000px;}
.y1c4{bottom:427.521000px;}
.y10a{bottom:428.247000px;}
.ye7{bottom:428.655000px;}
.ybe{bottom:430.221000px;}
.y90{bottom:430.224000px;}
.y36{bottom:431.940300px;}
.y63{bottom:434.617500px;}
.y12a{bottom:439.695000px;}
.y21d{bottom:441.256500px;}
.y14d{bottom:441.738000px;}
.y1fd{bottom:446.076000px;}
.y17c{bottom:449.031000px;}
.y1a2{bottom:449.052000px;}
.y1c3{bottom:449.190000px;}
.y109{bottom:449.916000px;}
.ye6{bottom:451.792500px;}
.ybd{bottom:451.890000px;}
.y8f{bottom:453.412500px;}
.y62{bottom:456.286500px;}
.y129{bottom:461.364000px;}
.y14c{bottom:463.405500px;}
.y1fc{bottom:467.743500px;}
.y1a1{bottom:470.721000px;}
.y1c2{bottom:470.859000px;}
.y17b{bottom:470.877000px;}
.y108{bottom:471.585000px;}
.ye5{bottom:473.461500px;}
.ybc{bottom:473.559000px;}
.y8e{bottom:475.081500px;}
.y35{bottom:477.842100px;}
.y61{bottom:477.955500px;}
.y21c{bottom:478.740000px;}
.y128{bottom:483.033000px;}
.yd{bottom:484.864502px;}
.y14b{bottom:485.074500px;}
.y1a0{bottom:492.390000px;}
.y1c1{bottom:492.528000px;}
.y17a{bottom:492.546000px;}
.y107{bottom:493.252500px;}
.ye4{bottom:495.130500px;}
.ybb{bottom:495.228000px;}
.y8d{bottom:496.750500px;}
.y21b{bottom:500.409000px;}
.yc{bottom:502.864502px;}
.y60{bottom:503.320500px;}
.y127{bottom:504.702000px;}
.y1fb{bottom:506.191500px;}
.y14a{bottom:506.743500px;}
.y19f{bottom:514.057500px;}
.y1c0{bottom:514.197000px;}
.y179{bottom:514.213500px;}
.y34{bottom:514.848540px;}
.y106{bottom:514.921500px;}
.y1e6{bottom:515.910000px;}
.ye3{bottom:516.798000px;}
.yba{bottom:516.897000px;}
.y8c{bottom:518.419500px;}
.yb{bottom:520.864502px;}
.y5f{bottom:524.989500px;}
.y126{bottom:526.369500px;}
.y1fa{bottom:527.860500px;}
.y149{bottom:528.412500px;}
.y33{bottom:533.838450px;}
.y19e{bottom:535.726500px;}
.y178{bottom:535.882500px;}
.y1bf{bottom:536.032500px;}
.y105{bottom:536.590500px;}
.y1e5{bottom:537.577500px;}
.y21a{bottom:537.894000px;}
.ye2{bottom:538.467000px;}
.yb9{bottom:538.566000px;}
.ya{bottom:538.864499px;}
.y8b{bottom:540.088500px;}
.y5e{bottom:546.658500px;}
.y125{bottom:548.038500px;}
.y1f9{bottom:549.529500px;}
.y148{bottom:550.081500px;}
.y249{bottom:552.540450px;}
.y32{bottom:552.828360px;}
.y9{bottom:556.864499px;}
.y19d{bottom:557.395500px;}
.y177{bottom:557.551500px;}
.y1be{bottom:557.701500px;}
.y104{bottom:558.259500px;}
.y1e4{bottom:559.246500px;}
.y219{bottom:559.561500px;}
.yb8{bottom:560.233500px;}
.ye1{bottom:561.604500px;}
.y8a{bottom:561.756000px;}
.y5d{bottom:568.327500px;}
.y124{bottom:569.707500px;}
.y147{bottom:571.749000px;}
.y31{bottom:571.818270px;}
.y248{bottom:573.420750px;}
.y19c{bottom:579.064500px;}
.y176{bottom:579.220500px;}
.y1bd{bottom:579.370500px;}
.y103{bottom:579.928500px;}
.y1e3{bottom:580.915500px;}
.y218{bottom:581.230500px;}
.yb7{bottom:581.902500px;}
.ye0{bottom:583.273500px;}
.y89{bottom:583.425000px;}
.y1f8{bottom:587.977500px;}
.y5c{bottom:589.996500px;}
.y30{bottom:590.709360px;}
.y123{bottom:591.376500px;}
.y146{bottom:593.418000px;}
.y19b{bottom:600.831000px;}
.y175{bottom:600.889500px;}
.y1bc{bottom:601.039500px;}
.y1e2{bottom:602.584500px;}
.y102{bottom:602.658000px;}
.yb6{bottom:603.571500px;}
.ydf{bottom:604.942500px;}
.y88{bottom:605.094000px;}
.y1f7{bottom:609.646500px;}
.y2f{bottom:609.699270px;}
.y5b{bottom:611.664000px;}
.y237{bottom:612.237000px;}
.y122{bottom:613.045500px;}
.y247{bottom:614.550450px;}
.y217{bottom:618.715500px;}
.y19a{bottom:622.500000px;}
.y174{bottom:622.558500px;}
.y1bb{bottom:622.708500px;}
.y1e1{bottom:624.253500px;}
.yb5{bottom:625.240500px;}
.y101{bottom:625.389000px;}
.y87{bottom:626.763000px;}
.yde{bottom:628.080000px;}
.y2e{bottom:628.689180px;}
.y1f6{bottom:631.315500px;}
.y5a{bottom:633.333000px;}
.y236{bottom:633.906000px;}
.y121{bottom:634.713000px;}
.y216{bottom:640.384500px;}
.y199{bottom:644.169000px;}
.y173{bottom:644.226000px;}
.y1ba{bottom:644.377500px;}
.y8{bottom:645.510000px;}
.y1e0{bottom:645.921000px;}
.yb4{bottom:646.909500px;}
.y2d{bottom:647.679090px;}
.y100{bottom:648.118500px;}
.y86{bottom:648.432000px;}
.ydd{bottom:649.749000px;}
.y59{bottom:655.002000px;}
.y235{bottom:655.575000px;}
.y145{bottom:655.933500px;}
.y120{bottom:656.382000px;}
.y246{bottom:656.670900px;}
.y198{bottom:665.838000px;}
.y1b9{bottom:666.045000px;}
.y172{bottom:666.072000px;}
.y2c{bottom:666.669000px;}
.y7{bottom:666.771000px;}
.y1df{bottom:667.590000px;}
.yb3{bottom:668.578500px;}
.y1f5{bottom:669.763500px;}
.y85{bottom:670.101000px;}
.yff{bottom:670.848000px;}
.ydc{bottom:671.418000px;}
.y58{bottom:676.671000px;}
.y137{bottom:677.602500px;}
.y215{bottom:677.868000px;}
.y11f{bottom:678.051000px;}
.y2b{bottom:685.560090px;}
.y197{bottom:687.507000px;}
.y1b8{bottom:687.714000px;}
.y171{bottom:687.741000px;}
.y245{bottom:688.890600px;}
.y1de{bottom:689.259000px;}
.yb2{bottom:690.246000px;}
.y1f4{bottom:691.431000px;}
.y84{bottom:691.768500px;}
.y234{bottom:692.187000px;}
.ydb{bottom:693.087000px;}
.yfe{bottom:693.579000px;}
.y214{bottom:699.537000px;}
.y11e{bottom:699.720000px;}
.y57{bottom:702.036000px;}
.y2a{bottom:704.550000px;}
.y196{bottom:709.176000px;}
.y1dd{bottom:710.928000px;}
.yb1{bottom:711.915000px;}
.y83{bottom:713.437500px;}
.y233{bottom:713.856000px;}
.yda{bottom:714.756000px;}
.yfd{bottom:715.248000px;}
.y244{bottom:721.110450px;}
.y11d{bottom:721.389000px;}
.y170{bottom:723.058500px;}
.y56{bottom:723.705000px;}
.y6{bottom:726.298500px;}
.y1b7{bottom:727.479000px;}
.y16f{bottom:727.492500px;}
.y1f3{bottom:729.879000px;}
.y195{bottom:730.843500px;}
.y1dc{bottom:732.597000px;}
.yb0{bottom:734.878500px;}
.y82{bottom:735.106500px;}
.y232{bottom:735.525000px;}
.yfc{bottom:736.915500px;}
.y213{bottom:737.020500px;}
.yd9{bottom:737.893500px;}
.y29{bottom:741.360450px;}
.y11c{bottom:743.058000px;}
.y55{bottom:745.374000px;}
.y194{bottom:752.512500px;}
.y3{bottom:752.599495px;}
.y243{bottom:753.420450px;}
.y1db{bottom:754.266000px;}
.yaf{bottom:756.547500px;}
.y81{bottom:756.775500px;}
.yfb{bottom:758.584500px;}
.y212{bottom:758.689500px;}
.yd8{bottom:759.562500px;}
.y11b{bottom:764.725500px;}
.y16e{bottom:766.944000px;}
.y54{bottom:767.043000px;}
.y1f2{bottom:768.327000px;}
.y231{bottom:772.137000px;}
.y193{bottom:774.280500px;}
.y1da{bottom:775.933500px;}
.yae{bottom:778.216500px;}
.y80{bottom:778.444500px;}
.yfa{bottom:780.253500px;}
.y211{bottom:780.358500px;}
.yd7{bottom:781.230000px;}
.y242{bottom:785.640900px;}
.y11a{bottom:786.394500px;}
.y1b6{bottom:788.407500px;}
.y16d{bottom:788.613000px;}
.y53{bottom:788.710500px;}
.y1f1{bottom:789.996000px;}
.y230{bottom:793.806000px;}
.y192{bottom:795.949500px;}
.y1d9{bottom:797.602500px;}
.y7f{bottom:800.112000px;}
.yad{bottom:801.180000px;}
.yf9{bottom:801.922500px;}
.yd6{bottom:804.369000px;}
.y1b5{bottom:810.076500px;}
.y16c{bottom:810.280500px;}
.y52{bottom:810.379500px;}
.y22f{bottom:815.475000px;}
.y191{bottom:817.618500px;}
.y210{bottom:817.842000px;}
.y241{bottom:817.941750px;}
.y1d8{bottom:819.271500px;}
.y7e{bottom:823.300500px;}
.y28{bottom:823.980450px;}
.yac{bottom:824.143500px;}
.y119{bottom:825.817500px;}
.yd5{bottom:826.036500px;}
.y1f0{bottom:828.444000px;}
.y1b4{bottom:831.745500px;}
.y51{bottom:832.048500px;}
.y16b{bottom:832.126500px;}
.y240{bottom:835.226250px;}
.yf8{bottom:837.328500px;}
.y190{bottom:839.286000px;}
.y20f{bottom:839.511000px;}
.y1d7{bottom:840.940500px;}
.y7d{bottom:844.969500px;}
.yab{bottom:845.812500px;}
.yd4{bottom:847.705500px;}
.y1ef{bottom:850.113000px;}
.y27{bottom:851.340450px;}
.y22e{bottom:852.087000px;}
.y23f{bottom:852.510750px;}
.y1b3{bottom:853.414500px;}
.y50{bottom:853.717500px;}
.y16a{bottom:853.795500px;}
.y118{bottom:858.694500px;}
.y18f{bottom:860.955000px;}
.y1d6{bottom:862.609500px;}
.y7c{bottom:866.638500px;}
.yaa{bottom:868.776000px;}
.yd3{bottom:869.374500px;}
.y22d{bottom:873.756000px;}
.y1b2{bottom:875.083500px;}
.y4f{bottom:875.386500px;}
.y169{bottom:875.464500px;}
.y20e{bottom:876.996000px;}
.y2{bottom:879.369000px;}
.y1d5{bottom:884.278500px;}
.y23e{bottom:884.640450px;}
.y7b{bottom:888.307500px;}
.y1ee{bottom:888.561000px;}
.yd2{bottom:891.043500px;}
.ya9{bottom:891.739500px;}
.y22c{bottom:895.425000px;}
.yf7{bottom:895.858500px;}
.y1b1{bottom:896.751000px;}
.y4e{bottom:897.054000px;}
.y20d{bottom:898.663500px;}
.y26{bottom:899.310450px;}
.y18e{bottom:900.706500px;}
.y1d4{bottom:905.946000px;}
.y7a{bottom:909.976500px;}
.y1ed{bottom:910.230000px;}
.y167{bottom:911.332500px;}
.y168{bottom:911.368500px;}
.yd1{bottom:912.712500px;}
.ya8{bottom:914.703000px;}
.y166{bottom:915.765000px;}
.yf6{bottom:917.527500px;}
.y23d{bottom:917.670450px;}
.y1b0{bottom:918.420000px;}
.y117{bottom:918.588000px;}
.y4d{bottom:918.723000px;}
.y1d3{bottom:927.615000px;}
.y25{bottom:930.360450px;}
.y79{bottom:931.644000px;}
.y1ec{bottom:931.899000px;}
.y22b{bottom:932.038500px;}
.yd0{bottom:934.381500px;}
.y20c{bottom:936.148500px;}
.y165{bottom:937.434000px;}
.ya7{bottom:937.666500px;}
.yf5{bottom:939.195000px;}
.y18d{bottom:940.158000px;}
.y116{bottom:940.257000px;}
.y4c{bottom:940.392000px;}
.y1d2{bottom:949.284000px;}
.y78{bottom:953.313000px;}
.y23c{bottom:953.400450px;}
.y1eb{bottom:953.566500px;}
.y22a{bottom:953.706000px;}
.ycf{bottom:956.049000px;}
.y164{bottom:959.103000px;}
.ya6{bottom:960.631500px;}
.yf4{bottom:960.864000px;}
.y24{bottom:961.410450px;}
.y18c{bottom:961.827000px;}
.y115{bottom:961.926000px;}
.y4b{bottom:962.061000px;}
.y1{bottom:966.726000px;}
.y20b{bottom:973.632000px;}
.y77{bottom:974.982000px;}
.y163{bottom:976.338000px;}
.yce{bottom:979.188000px;}
.y162{bottom:980.772000px;}
.ya5{bottom:982.299000px;}
.yf3{bottom:982.533000px;}
.y18b{bottom:983.496000px;}
.y114{bottom:983.595000px;}
.y4a{bottom:983.730000px;}
.y1d1{bottom:988.707000px;}
.y23b{bottom:989.040450px;}
.y229{bottom:990.319500px;}
.y1ea{bottom:992.014500px;}
.y20a{bottom:995.301000px;}
.y76{bottom:996.651000px;}
.y161{bottom:998.007000px;}
.ycd{bottom:1002.325500px;}
.y160{bottom:1002.441000px;}
.y18a{bottom:1005.165000px;}
.ya4{bottom:1005.262500px;}
.y49{bottom:1005.399000px;}
.y228{bottom:1011.988500px;}
.y1e9{bottom:1013.683500px;}
.y15e{bottom:1018.879500px;}
.y15f{bottom:1019.676000px;}
.y15d{bottom:1024.108500px;}
.y23a{bottom:1024.770450px;}
.ycc{bottom:1025.463000px;}
.y189{bottom:1026.832500px;}
.ya3{bottom:1026.931500px;}
.y48{bottom:1027.066500px;}
.y209{bottom:1032.786000px;}
.y75{bottom:1032.987000px;}
.y227{bottom:1033.656000px;}
.y15c{bottom:1042.747500px;}
.y15b{bottom:1047.181500px;}
.y188{bottom:1048.501500px;}
.ya2{bottom:1048.600500px;}
.y47{bottom:1048.735500px;}
.y1e8{bottom:1052.131500px;}
.y208{bottom:1054.453500px;}
.y239{bottom:1060.500450px;}
.y187{bottom:1070.170500px;}
.ya1{bottom:1070.269500px;}
.y46{bottom:1070.404500px;}
.y1e7{bottom:1073.800500px;}
.y15a{bottom:1078.414500px;}
.y74{bottom:1080.730500px;}
.y23{bottom:1081.830450px;}
.y238{bottom:1088.310450px;}
.ya0{bottom:1091.938500px;}
.y73{bottom:1113.607500px;}
.y45{bottom:1117.342500px;}
.y44{bottom:1175.400000px;}
.h17{height:31.383000px;}
.h7{height:32.130000px;}
.h1c{height:33.885870px;}
.h1e{height:42.999374px;}
.h18{height:44.833500px;}
.h6{height:45.900000px;}
.h31{height:46.865494px;}
.h14{height:46.917223px;}
.h3{height:48.195000px;}
.h1f{height:48.544748px;}
.h11{height:49.090500px;}
.h2e{height:49.090950px;}
.h8{height:49.937344px;}
.hf{height:52.998047px;}
.h13{height:53.797500px;}
.h30{height:53.798400px;}
.h2{height:55.080000px;}
.h25{height:57.900217px;}
.h19{height:57.906217px;}
.hb{height:58.975137px;}
.h20{height:59.207795px;}
.h2a{height:59.213795px;}
.h16{height:61.893000px;}
.h33{height:62.703281px;}
.h1a{height:64.555500px;}
.h15{height:64.557000px;}
.he{height:64.625449px;}
.hd{height:64.657617px;}
.h1d{height:64.726330px;}
.hc{height:66.394687px;}
.h29{height:66.735155px;}
.h22{height:66.744217px;}
.h2d{height:67.811010px;}
.h27{height:67.961010px;}
.h32{height:70.664062px;}
.h24{height:71.527500px;}
.h21{height:71.533500px;}
.h28{height:75.636217px;}
.h2c{height:76.799795px;}
.h26{height:76.943795px;}
.h12{height:77.467500px;}
.h2f{height:77.469300px;}
.h5{height:78.030000px;}
.h23{height:78.822217px;}
.h2b{height:80.597795px;}
.ha{height:82.282676px;}
.h34{height:94.289590px;}
.h9{height:108.843750px;}
.h4{height:119.055004px;}
.h1b{height:369.482602px;}
.h0{height:1262.833500px;}
.h10{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:394.711729px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:27.119286px;}
.x16{left:35.451827px;}
.x1a{left:59.437420px;}
.x17{left:64.132822px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:127.558500px;}
.x12{left:142.500000px;}
.x1c{left:146.004400px;}
.x11{left:147.748500px;}
.xe{left:153.897000px;}
.xc{left:168.930000px;}
.x5{left:170.100000px;}
.x10{left:171.124500px;}
.x19{left:178.846528px;}
.x20{left:180.423000px;}
.x1e{left:189.241500px;}
.x18{left:193.451591px;}
.x1d{left:194.905500px;}
.x1b{left:196.061290px;}
.x4{left:203.484001px;}
.x14{left:207.527523px;}
.x26{left:224.358000px;}
.x6{left:230.130000px;}
.x2b{left:274.038000px;}
.x7{left:275.841000px;}
.x8{left:292.311000px;}
.x27{left:314.728500px;}
.x2c{left:352.846500px;}
.xa{left:400.140000px;}
.x9{left:408.690000px;}
.x2d{left:415.425000px;}
.x28{left:418.393500px;}
.x21{left:453.679500px;}
.x3{left:454.959000px;}
.x23{left:465.133500px;}
.x1f{left:482.751000px;}
.x22{left:550.465500px;}
.xf{left:563.229000px;}
.x24{left:572.761500px;}
.x29{left:576.198000px;}
.x2a{left:601.395000px;}
.x13{left:629.515500px;}
.x25{left:643.836000px;}
.xb{left:748.260000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.vb{vertical-align:-15.056000pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.197333pt;}
.v4{vertical-align:9.562667pt;}
.v5{vertical-align:15.765333pt;}
.v8{vertical-align:18.592000pt;}
.v1{vertical-align:23.136000pt;}
.v7{vertical-align:30.997333pt;}
.vc{vertical-align:32.704000pt;}
.v9{vertical-align:38.901333pt;}
.va{vertical-align:42.149333pt;}
.ls36{letter-spacing:-0.594442pt;}
.ls37{letter-spacing:-0.577458pt;}
.ls38{letter-spacing:-0.101904pt;}
.ls16{letter-spacing:-0.070272pt;}
.ls15{letter-spacing:-0.064128pt;}
.ls7e{letter-spacing:-0.026720pt;}
.ls34{letter-spacing:-0.016984pt;}
.ls7b{letter-spacing:-0.016032pt;}
.ls18{letter-spacing:-0.011712pt;}
.ls7c{letter-spacing:-0.010688pt;}
.ls13{letter-spacing:-0.009600pt;}
.ls7d{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000667pt;}
.ls1f{letter-spacing:0.001280pt;}
.ls21{letter-spacing:0.002667pt;}
.ls1{letter-spacing:0.004256pt;}
.ls12{letter-spacing:0.008512pt;}
.ls63{letter-spacing:0.009680pt;}
.lsb{letter-spacing:0.011712pt;}
.ls2f{letter-spacing:0.013280pt;}
.ls60{letter-spacing:0.013947pt;}
.ls46{letter-spacing:0.014827pt;}
.lsf{letter-spacing:0.017024pt;}
.ls17{letter-spacing:0.017568pt;}
.ls32{letter-spacing:0.018613pt;}
.ls68{letter-spacing:0.018640pt;}
.ls6b{letter-spacing:0.019280pt;}
.ls3f{letter-spacing:0.020160pt;}
.ls7a{letter-spacing:0.021376pt;}
.lsd{letter-spacing:0.023424pt;}
.ls2{letter-spacing:0.025536pt;}
.lsa{letter-spacing:0.029280pt;}
.ls10{letter-spacing:0.029792pt;}
.ls11{letter-spacing:0.034048pt;}
.ls6{letter-spacing:0.035136pt;}
.ls3{letter-spacing:0.042560pt;}
.ls4{letter-spacing:0.046848pt;}
.ls5{letter-spacing:0.052704pt;}
.ls8{letter-spacing:0.058560pt;}
.ls14{letter-spacing:0.059648pt;}
.lsc{letter-spacing:0.064416pt;}
.ls9{letter-spacing:0.070272pt;}
.ls7{letter-spacing:0.076128pt;}
.lse{letter-spacing:0.081984pt;}
.ls2a{letter-spacing:0.407617pt;}
.ls1c{letter-spacing:0.546800pt;}
.ls2b{letter-spacing:0.594442pt;}
.ls35{letter-spacing:0.611426pt;}
.ls5b{letter-spacing:0.966667pt;}
.ls41{letter-spacing:1.736453pt;}
.ls5d{letter-spacing:2.022880pt;}
.ls44{letter-spacing:2.028213pt;}
.ls57{letter-spacing:2.153067pt;}
.ls4a{letter-spacing:2.256347pt;}
.ls48{letter-spacing:2.261680pt;}
.ls5a{letter-spacing:2.384587pt;}
.ls2d{letter-spacing:2.642773pt;}
.ls42{letter-spacing:2.648107pt;}
.ls24{letter-spacing:2.654880pt;}
.ls20{letter-spacing:2.660213pt;}
.ls1d{letter-spacing:2.666293pt;}
.ls1e{letter-spacing:2.671627pt;}
.ls47{letter-spacing:3.731333pt;}
.ls28{letter-spacing:4.089547pt;}
.ls6e{letter-spacing:4.094880pt;}
.ls23{letter-spacing:4.304240pt;}
.ls1b{letter-spacing:5.237333pt;}
.ls2e{letter-spacing:10.625280pt;}
.ls4b{letter-spacing:10.626667pt;}
.ls4d{letter-spacing:10.630613pt;}
.ls3d{letter-spacing:14.140213pt;}
.ls58{letter-spacing:14.145547pt;}
.ls50{letter-spacing:14.154720pt;}
.ls4f{letter-spacing:14.164587pt;}
.ls77{letter-spacing:14.520000pt;}
.ls3e{letter-spacing:15.210293pt;}
.ls51{letter-spacing:15.215627pt;}
.ls74{letter-spacing:16.790107pt;}
.ls59{letter-spacing:16.813440pt;}
.ls3c{letter-spacing:16.836960pt;}
.ls78{letter-spacing:17.188960pt;}
.ls67{letter-spacing:17.492213pt;}
.ls3b{letter-spacing:17.681547pt;}
.ls53{letter-spacing:17.686880pt;}
.ls43{letter-spacing:17.693387pt;}
.ls6c{letter-spacing:17.696773pt;}
.ls69{letter-spacing:17.707947pt;}
.ls6a{letter-spacing:17.713280pt;}
.ls62{letter-spacing:17.720613pt;}
.ls66{letter-spacing:18.833787pt;}
.ls65{letter-spacing:18.865280pt;}
.ls64{letter-spacing:19.024773pt;}
.ls4c{letter-spacing:19.740213pt;}
.ls6f{letter-spacing:19.899440pt;}
.ls25{letter-spacing:20.214107pt;}
.ls3a{letter-spacing:20.354773pt;}
.ls4e{letter-spacing:20.378293pt;}
.ls39{letter-spacing:20.378587pt;}
.ls5c{letter-spacing:20.795440pt;}
.ls27{letter-spacing:20.801280pt;}
.ls45{letter-spacing:20.806613pt;}
.ls79{letter-spacing:20.811657pt;}
.ls61{letter-spacing:22.315947pt;}
.ls70{letter-spacing:22.586293pt;}
.ls22{letter-spacing:23.312773pt;}
.ls49{letter-spacing:23.471627pt;}
.ls26{letter-spacing:23.590107pt;}
.ls30{letter-spacing:23.597333pt;}
.ls76{letter-spacing:23.709333pt;}
.ls71{letter-spacing:23.775627pt;}
.ls73{letter-spacing:25.361280pt;}
.ls1a{letter-spacing:26.709333pt;}
.ls31{letter-spacing:26.874293pt;}
.ls72{letter-spacing:27.275440pt;}
.ls56{letter-spacing:27.501333pt;}
.ls29{letter-spacing:28.502107pt;}
.ls5f{letter-spacing:29.505280pt;}
.ls33{letter-spacing:29.650667pt;}
.ls75{letter-spacing:30.895627pt;}
.ls5e{letter-spacing:31.211440pt;}
.ls2c{letter-spacing:32.550107pt;}
.ls54{letter-spacing:37.796960pt;}
.ls55{letter-spacing:53.131947pt;}
.ls52{letter-spacing:53.137280pt;}
.ls19{letter-spacing:727.826667pt;}
.ls6d{letter-spacing:911.211947pt;}
.wsfc{word-spacing:-48.330080pt;}
.ws17f{word-spacing:-19.925333pt;}
.ws147{word-spacing:-17.343010pt;}
.ws141{word-spacing:-15.940267pt;}
.ws3{word-spacing:-14.628288pt;}
.wsd8{word-spacing:-14.385487pt;}
.wsda{word-spacing:-13.213587pt;}
.wsd9{word-spacing:-13.196603pt;}
.ws2{word-spacing:-11.874240pt;}
.ws1{word-spacing:-11.857216pt;}
.wsdb{word-spacing:-10.924274pt;}
.wsf2{word-spacing:-3.142048pt;}
.ws188{word-spacing:-2.422921pt;}
.ws18e{word-spacing:-2.295398pt;}
.ws167{word-spacing:-1.912832pt;}
.ws151{word-spacing:-1.530266pt;}
.ws16e{word-spacing:-1.083938pt;}
.ws181{word-spacing:-0.765133pt;}
.wsef{word-spacing:-0.611426pt;}
.wsf0{word-spacing:-0.237777pt;}
.ws159{word-spacing:-0.191283pt;}
.ws6{word-spacing:-0.141664pt;}
.ws195{word-spacing:-0.128256pt;}
.ws190{word-spacing:-0.112224pt;}
.ws196{word-spacing:-0.101536pt;}
.ws50{word-spacing:-0.091813pt;}
.ws7b{word-spacing:-0.063760pt;}
.ws4e{word-spacing:-0.058181pt;}
.wsf3{word-spacing:-0.042507pt;}
.ws21{word-spacing:-0.012768pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.009600pt;}
.ws4{word-spacing:0.012768pt;}
.wsee{word-spacing:0.016984pt;}
.ws1c{word-spacing:0.017568pt;}
.ws17{word-spacing:0.023424pt;}
.ws15{word-spacing:0.046848pt;}
.ws18{word-spacing:0.064416pt;}
.ws16{word-spacing:0.070272pt;}
.ws1d{word-spacing:0.081984pt;}
.ws7{word-spacing:0.144288pt;}
.ws193{word-spacing:0.171008pt;}
.ws194{word-spacing:0.197728pt;}
.ws14a{word-spacing:0.446327pt;}
.ws178{word-spacing:0.510089pt;}
.wsf1{word-spacing:0.577458pt;}
.ws13{word-spacing:0.667584pt;}
.ws14{word-spacing:0.691008pt;}
.ws164{word-spacing:1.402743pt;}
.ws168{word-spacing:1.466505pt;}
.ws171{word-spacing:1.530266pt;}
.ws169{word-spacing:1.594027pt;}
.wsf{word-spacing:1.622112pt;}
.ws162{word-spacing:1.657788pt;}
.ws160{word-spacing:1.674783pt;}
.ws150{word-spacing:1.785310pt;}
.ws175{word-spacing:1.976593pt;}
.ws15c{word-spacing:2.104115pt;}
.ws173{word-spacing:2.167876pt;}
.ws17c{word-spacing:2.359159pt;}
.ws15a{word-spacing:2.390929pt;}
.ws14e{word-spacing:3.124292pt;}
.ws165{word-spacing:3.315575pt;}
.ws16d{word-spacing:3.436010pt;}
.ws177{word-spacing:3.438290pt;}
.ws13f{word-spacing:3.443098pt;}
.ws172{word-spacing:3.457212pt;}
.ws163{word-spacing:3.506859pt;}
.ws157{word-spacing:4.271991pt;}
.ws187{word-spacing:4.399514pt;}
.wsb{word-spacing:4.526688pt;}
.ws16a{word-spacing:4.654558pt;}
.ws161{word-spacing:4.718319pt;}
.ws18f{word-spacing:4.845841pt;}
.ws146{word-spacing:4.973363pt;}
.ws174{word-spacing:5.037124pt;}
.wsc{word-spacing:5.124000pt;}
.wsd{word-spacing:5.141568pt;}
.ws15b{word-spacing:5.164646pt;}
.ws152{word-spacing:5.228407pt;}
.ws185{word-spacing:5.292169pt;}
.ws154{word-spacing:5.419691pt;}
.ws17e{word-spacing:5.993540pt;}
.ws14f{word-spacing:6.057301pt;}
.ws176{word-spacing:6.121062pt;}
.ws166{word-spacing:6.248585pt;}
.ws14b{word-spacing:6.376107pt;}
.ws1a{word-spacing:6.418176pt;}
.ws19{word-spacing:6.728544pt;}
.ws17d{word-spacing:6.822434pt;}
.ws158{word-spacing:7.141239pt;}
.ws15d{word-spacing:7.205001pt;}
.ws18b{word-spacing:7.268762pt;}
.ws189{word-spacing:7.396284pt;}
.ws16b{word-spacing:7.523806pt;}
.ws18d{word-spacing:7.715089pt;}
.ws145{word-spacing:7.778850pt;}
.ws180{word-spacing:7.970133pt;}
.ws184{word-spacing:8.033894pt;}
.ws155{word-spacing:8.161417pt;}
.wse{word-spacing:8.333088pt;}
.ws15f{word-spacing:8.671505pt;}
.ws182{word-spacing:8.926549pt;}
.ws1e{word-spacing:9.305184pt;}
.ws3e{word-spacing:9.755280pt;}
.ws15e{word-spacing:9.882965pt;}
.ws70{word-spacing:9.946560pt;}
.ws18a{word-spacing:10.010487pt;}
.ws16c{word-spacing:10.138010pt;}
.ws18c{word-spacing:10.265532pt;}
.ws156{word-spacing:10.393054pt;}
.ws140{word-spacing:10.456815pt;}
.wse7{word-spacing:10.520400pt;}
.wsf7{word-spacing:10.584160pt;}
.ws186{word-spacing:10.711859pt;}
.ws179{word-spacing:11.094426pt;}
.wsa{word-spacing:11.243520pt;}
.ws183{word-spacing:11.413231pt;}
.ws20{word-spacing:11.852544pt;}
.ws1f{word-spacing:11.870112pt;}
.ws14c{word-spacing:12.879735pt;}
.ws17b{word-spacing:12.943497pt;}
.ws192{word-spacing:13.311904pt;}
.ws191{word-spacing:13.322592pt;}
.ws139{word-spacing:13.325840pt;}
.ws17a{word-spacing:13.326063pt;}
.ws1b{word-spacing:13.498080pt;}
.ws148{word-spacing:13.517346pt;}
.ws98{word-spacing:13.580880pt;}
.ws69{word-spacing:13.644640pt;}
.ws13d{word-spacing:13.644868pt;}
.wsb3{word-spacing:13.708400pt;}
.ws10{word-spacing:13.767456pt;}
.wsf9{word-spacing:13.772160pt;}
.wsa9{word-spacing:13.899680pt;}
.ws72{word-spacing:14.027200pt;}
.ws66{word-spacing:14.090960pt;}
.ws143{word-spacing:14.282479pt;}
.ws28{word-spacing:14.409760pt;}
.ws108{word-spacing:14.601040pt;}
.ws88{word-spacing:14.728560pt;}
.wsaf{word-spacing:14.792320pt;}
.wsc7{word-spacing:14.919840pt;}
.wsb1{word-spacing:14.983600pt;}
.ws14d{word-spacing:14.983851pt;}
.ws2c{word-spacing:15.047360pt;}
.ws61{word-spacing:15.111120pt;}
.wsde{word-spacing:15.174880pt;}
.ws77{word-spacing:15.238640pt;}
.wsd4{word-spacing:15.366160pt;}
.ws76{word-spacing:15.429920pt;}
.ws91{word-spacing:15.493680pt;}
.ws94{word-spacing:15.557440pt;}
.ws149{word-spacing:15.621461pt;}
.wsba{word-spacing:15.684960pt;}
.ws13e{word-spacing:15.748983pt;}
.ws125{word-spacing:15.812480pt;}
.ws74{word-spacing:15.876240pt;}
.ws5a{word-spacing:15.940000pt;}
.ws51{word-spacing:16.003760pt;}
.ws127{word-spacing:16.067520pt;}
.ws92{word-spacing:16.131280pt;}
.ws8e{word-spacing:16.153344pt;}
.wscb{word-spacing:16.195040pt;}
.ws8d{word-spacing:16.259616pt;}
.ws144{word-spacing:16.322833pt;}
.wsa6{word-spacing:16.386320pt;}
.wsd5{word-spacing:16.513840pt;}
.ws4d{word-spacing:16.641360pt;}
.ws11a{word-spacing:16.705120pt;}
.ws60{word-spacing:16.768880pt;}
.ws71{word-spacing:16.832640pt;}
.ws4a{word-spacing:16.896400pt;}
.wsdc{word-spacing:16.960160pt;}
.wsb6{word-spacing:17.023920pt;}
.wsdf{word-spacing:17.087680pt;}
.wsa5{word-spacing:17.151440pt;}
.ws4b{word-spacing:17.215200pt;}
.wsca{word-spacing:17.229360pt;}
.ws30{word-spacing:17.342720pt;}
.ws6d{word-spacing:17.470240pt;}
.ws87{word-spacing:17.534000pt;}
.ws11c{word-spacing:17.589280pt;}
.wsf8{word-spacing:17.592667pt;}
.ws9e{word-spacing:17.597760pt;}
.wsfd{word-spacing:17.620800pt;}
.ws8{word-spacing:17.632416pt;}
.ws8c{word-spacing:17.641152pt;}
.ws27{word-spacing:17.789040pt;}
.wsbe{word-spacing:17.852800pt;}
.ws6f{word-spacing:17.980320pt;}
.ws6e{word-spacing:18.044080pt;}
.ws116{word-spacing:18.131013pt;}
.ws39{word-spacing:18.171600pt;}
.ws118{word-spacing:18.213547pt;}
.ws115{word-spacing:18.299120pt;}
.ws117{word-spacing:18.328587pt;}
.ws97{word-spacing:18.362880pt;}
.ws153{word-spacing:18.363187pt;}
.ws10e{word-spacing:18.490400pt;}
.ws81{word-spacing:18.554160pt;}
.ws12b{word-spacing:18.617920pt;}
.ws75{word-spacing:18.745440pt;}
.ws16f{word-spacing:18.745754pt;}
.ws109{word-spacing:18.936720pt;}
.ws84{word-spacing:19.064240pt;}
.ws107{word-spacing:19.128000pt;}
.ws131{word-spacing:19.191760pt;}
.wsae{word-spacing:19.255520pt;}
.ws4c{word-spacing:19.319280pt;}
.ws9a{word-spacing:19.383040pt;}
.ws67{word-spacing:19.446800pt;}
.ws5b{word-spacing:19.510560pt;}
.ws34{word-spacing:19.574320pt;}
.wsaa{word-spacing:19.701840pt;}
.wsc0{word-spacing:19.765600pt;}
.wsb4{word-spacing:19.829360pt;}
.ws93{word-spacing:19.893120pt;}
.ws132{word-spacing:19.956880pt;}
.wsf6{word-spacing:19.995680pt;}
.ws11f{word-spacing:20.012667pt;}
.ws35{word-spacing:20.020640pt;}
.wsd6{word-spacing:20.075600pt;}
.ws7a{word-spacing:20.084400pt;}
.ws24{word-spacing:20.148160pt;}
.ws40{word-spacing:20.211920pt;}
.ws121{word-spacing:20.275680pt;}
.ws6a{word-spacing:20.339440pt;}
.ws45{word-spacing:20.403200pt;}
.ws138{word-spacing:20.466960pt;}
.ws170{word-spacing:20.467302pt;}
.ws9d{word-spacing:20.530720pt;}
.ws2e{word-spacing:20.594480pt;}
.ws126{word-spacing:20.658240pt;}
.ws22{word-spacing:20.712555pt;}
.ws25{word-spacing:20.722000pt;}
.ws8b{word-spacing:20.723040pt;}
.ws106{word-spacing:20.727627pt;}
.wsfb{word-spacing:20.741360pt;}
.ws13c{word-spacing:20.770926pt;}
.ws26{word-spacing:20.785760pt;}
.wsab{word-spacing:20.913280pt;}
.wsb0{word-spacing:21.040800pt;}
.ws68{word-spacing:21.104560pt;}
.wsa8{word-spacing:21.168320pt;}
.ws6b{word-spacing:21.232080pt;}
.wscf{word-spacing:21.295840pt;}
.wscd{word-spacing:21.336027pt;}
.wsdd{word-spacing:21.359600pt;}
.ws2b{word-spacing:21.423360pt;}
.ws8f{word-spacing:21.487120pt;}
.ws112{word-spacing:21.543467pt;}
.ws49{word-spacing:21.550880pt;}
.ws114{word-spacing:21.560027pt;}
.ws11b{word-spacing:21.614640pt;}
.ws113{word-spacing:21.664213pt;}
.wsc4{word-spacing:21.678400pt;}
.ws120{word-spacing:21.742160pt;}
.ws9{word-spacing:21.784320pt;}
.ws33{word-spacing:21.805920pt;}
.ws9b{word-spacing:21.869680pt;}
.ws78{word-spacing:21.933440pt;}
.wsa3{word-spacing:21.997200pt;}
.wsc9{word-spacing:22.041733pt;}
.ws10d{word-spacing:22.060960pt;}
.wsa2{word-spacing:22.124720pt;}
.ws79{word-spacing:22.188480pt;}
.ws64{word-spacing:22.252240pt;}
.wsbb{word-spacing:22.316000pt;}
.ws119{word-spacing:22.368400pt;}
.ws8a{word-spacing:22.379760pt;}
.ws73{word-spacing:22.443520pt;}
.ws37{word-spacing:22.507280pt;}
.wsd1{word-spacing:22.571040pt;}
.ws9c{word-spacing:22.634800pt;}
.ws38{word-spacing:22.698560pt;}
.wsd2{word-spacing:22.762320pt;}
.wsce{word-spacing:22.826080pt;}
.ws32{word-spacing:22.889840pt;}
.ws2f{word-spacing:22.953600pt;}
.ws58{word-spacing:23.017360pt;}
.ws12f{word-spacing:23.081120pt;}
.ws2d{word-spacing:23.144880pt;}
.ws54{word-spacing:23.208640pt;}
.ws10f{word-spacing:23.272400pt;}
.ws52{word-spacing:23.272800pt;}
.ws96{word-spacing:23.336160pt;}
.wseb{word-spacing:23.399920pt;}
.wsd0{word-spacing:23.499440pt;}
.wsc1{word-spacing:23.509760pt;}
.ws83{word-spacing:23.527440pt;}
.ws59{word-spacing:23.591200pt;}
.wsc3{word-spacing:23.654960pt;}
.wsa0{word-spacing:23.782480pt;}
.ws29{word-spacing:23.846240pt;}
.ws101{word-spacing:24.037520pt;}
.ws62{word-spacing:24.165040pt;}
.ws85{word-spacing:24.228800pt;}
.ws12c{word-spacing:24.292560pt;}
.ws133{word-spacing:24.356320pt;}
.ws89{word-spacing:24.420080pt;}
.ws53{word-spacing:24.483840pt;}
.wsc8{word-spacing:24.547600pt;}
.wse9{word-spacing:24.611360pt;}
.wsb8{word-spacing:24.675120pt;}
.ws104{word-spacing:24.735787pt;}
.ws3f{word-spacing:24.738880pt;}
.ws47{word-spacing:24.802640pt;}
.ws36{word-spacing:24.866400pt;}
.ws46{word-spacing:24.930160pt;}
.ws65{word-spacing:24.993920pt;}
.ws3b{word-spacing:25.057680pt;}
.ws3d{word-spacing:25.121440pt;}
.ws48{word-spacing:25.185200pt;}
.ws12a{word-spacing:25.248960pt;}
.ws10c{word-spacing:25.312720pt;}
.ws82{word-spacing:25.376480pt;}
.wsbc{word-spacing:25.399040pt;}
.ws63{word-spacing:25.440240pt;}
.wsb2{word-spacing:25.504000pt;}
.ws80{word-spacing:25.520187pt;}
.wsb9{word-spacing:25.567760pt;}
.ws13a{word-spacing:25.631520pt;}
.ws41{word-spacing:25.695280pt;}
.ws7f{word-spacing:25.822800pt;}
.wse8{word-spacing:25.886560pt;}
.ws99{word-spacing:25.950320pt;}
.wsc5{word-spacing:26.014080pt;}
.ws7d{word-spacing:26.205360pt;}
.ws43{word-spacing:26.269120pt;}
.ws57{word-spacing:26.332880pt;}
.ws55{word-spacing:26.396640pt;}
.ws10a{word-spacing:26.460400pt;}
.wsa1{word-spacing:26.524160pt;}
.ws31{word-spacing:26.587920pt;}
.wsa7{word-spacing:26.606373pt;}
.ws56{word-spacing:26.651680pt;}
.ws100{word-spacing:26.715440pt;}
.wsd3{word-spacing:26.779200pt;}
.ws11e{word-spacing:26.842960pt;}
.wsfe{word-spacing:26.906720pt;}
.ws6c{word-spacing:26.970480pt;}
.ws90{word-spacing:27.098000pt;}
.ws136{word-spacing:27.161760pt;}
.ws135{word-spacing:27.225520pt;}
.ws11d{word-spacing:27.275680pt;}
.ws9f{word-spacing:27.289280pt;}
.ws124{word-spacing:27.416800pt;}
.ws5e{word-spacing:27.480560pt;}
.ws129{word-spacing:27.499600pt;}
.ws42{word-spacing:27.544320pt;}
.ws3a{word-spacing:27.608080pt;}
.ws44{word-spacing:27.735600pt;}
.wsa4{word-spacing:27.799360pt;}
.wsad{word-spacing:28.054400pt;}
.wsd7{word-spacing:28.088267pt;}
.ws86{word-spacing:28.118160pt;}
.ws5d{word-spacing:28.181920pt;}
.wsfa{word-spacing:28.245680pt;}
.wsac{word-spacing:28.309440pt;}
.wscc{word-spacing:28.327867pt;}
.ws123{word-spacing:28.373200pt;}
.wsb7{word-spacing:28.436960pt;}
.wsb5{word-spacing:28.500720pt;}
.wse5{word-spacing:28.628240pt;}
.wsbd{word-spacing:28.692000pt;}
.ws95{word-spacing:28.755760pt;}
.ws7c{word-spacing:28.819520pt;}
.ws2a{word-spacing:28.883280pt;}
.wsc2{word-spacing:28.935040pt;}
.wsed{word-spacing:28.947040pt;}
.ws5c{word-spacing:29.265840pt;}
.ws12d{word-spacing:29.457120pt;}
.ws122{word-spacing:29.502933pt;}
.ws7e{word-spacing:29.520880pt;}
.ws130{word-spacing:29.584640pt;}
.wsbf{word-spacing:29.712160pt;}
.ws110{word-spacing:30.094720pt;}
.ws137{word-spacing:30.286000pt;}
.ws102{word-spacing:30.349760pt;}
.ws111{word-spacing:30.477280pt;}
.ws4f{word-spacing:30.573840pt;}
.ws103{word-spacing:31.051120pt;}
.ws10b{word-spacing:31.108640pt;}
.ws105{word-spacing:31.369920pt;}
.ws3c{word-spacing:31.382587pt;}
.wse2{word-spacing:31.752480pt;}
.wse1{word-spacing:31.816240pt;}
.wse0{word-spacing:32.097760pt;}
.ws5f{word-spacing:32.856160pt;}
.ws12e{word-spacing:33.052800pt;}
.wse4{word-spacing:33.218960pt;}
.ws12{word-spacing:33.619296pt;}
.ws11{word-spacing:33.631008pt;}
.ws142{word-spacing:33.665843pt;}
.wsea{word-spacing:34.175360pt;}
.ws134{word-spacing:34.239120pt;}
.wse6{word-spacing:37.172080pt;}
.wse3{word-spacing:37.899067pt;}
.wsff{word-spacing:38.064720pt;}
.wsf4{word-spacing:38.447280pt;}
.wsec{word-spacing:40.232560pt;}
.wsc6{word-spacing:53.435360pt;}
.wsf5{word-spacing:63.313680pt;}
.ws23{word-spacing:102.004613pt;}
.ws13b{word-spacing:682.209877pt;}
.ws128{word-spacing:698.677819pt;}
._a{margin-left:-18.047200pt;}
._7{margin-left:-15.723792pt;}
._20{margin-left:-14.764800pt;}
._2c{margin-left:-12.662928pt;}
._2d{margin-left:-11.725712pt;}
._31{margin-left:-10.502277pt;}
._b{margin-left:-9.445040pt;}
._d{margin-left:-8.499520pt;}
._c{margin-left:-6.870384pt;}
._2a{margin-left:-5.767872pt;}
._6{margin-left:-4.755467pt;}
._22{margin-left:-3.865029pt;}
._3{margin-left:-2.967248pt;}
._10{margin-left:-1.957840pt;}
._1{margin-left:-0.936960pt;}
._0{width:1.108096pt;}
._1f{width:2.035333pt;}
._2f{width:2.966160pt;}
._11{width:4.024448pt;}
._30{width:5.339264pt;}
._2{width:6.441600pt;}
._1b{width:8.353131pt;}
._1d{width:10.445760pt;}
._3e{width:12.042224pt;}
._27{width:14.251680pt;}
._9{width:15.891088pt;}
._26{width:16.967760pt;}
._14{width:18.365024pt;}
._8{width:19.881664pt;}
._34{width:20.857120pt;}
._13{width:21.812800pt;}
._18{width:22.863488pt;}
._17{width:23.942688pt;}
._16{width:25.701493pt;}
._4{width:26.647051pt;}
._e{width:27.946987pt;}
._12{width:29.504304pt;}
._2b{width:30.689760pt;}
._f{width:31.993472pt;}
._41{width:32.928432pt;}
._19{width:33.944272pt;}
._25{width:35.690224pt;}
._24{width:37.456640pt;}
._2e{width:38.426965pt;}
._3d{width:40.721051pt;}
._1e{width:42.732960pt;}
._33{width:44.007872pt;}
._1c{width:45.552997pt;}
._15{width:46.445760pt;}
._1a{width:48.311360pt;}
._28{width:50.441040pt;}
._32{width:51.759856pt;}
._29{width:54.548000pt;}
._40{width:58.532659pt;}
._3b{width:62.790987pt;}
._3a{width:64.251360pt;}
._23{width:84.564576pt;}
._21{width:102.096427pt;}
._39{width:126.670853pt;}
._3c{width:285.535328pt;}
._36{width:313.517141pt;}
._37{width:328.472341pt;}
._38{width:356.717301pt;}
._35{width:392.517868pt;}
._3f{width:704.749995pt;}
._5{width:733.832661pt;}
.fs10{font-size:37.194667pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:41.373135pt;}
.fsf{font-size:42.506667pt;}
.fs5{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs11{font-size:53.136000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs13{font-size:55.164180pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.181333pt;}
.fs14{font-size:58.181867pt;}
.fs9{font-size:58.560000pt;}
.fsd{font-size:63.760000pt;}
.fs16{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fse{font-size:76.512000pt;}
.fs17{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:91.813333pt;}
.fs15{font-size:91.815467pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:14.623263pt;}
.y5{bottom:59.133337pt;}
.y42{bottom:59.867067pt;}
.y24b{bottom:68.907067pt;}
.y9f{bottom:70.214667pt;}
.y72{bottom:73.534667pt;}
.y141{bottom:73.600361pt;}
.y142{bottom:74.037700pt;}
.y24a{bottom:84.907067pt;}
.y43{bottom:84.987067pt;}
.y4{bottom:86.333337pt;}
.y140{bottom:102.443516pt;}
.y9e{bottom:110.065333pt;}
.y71{bottom:113.385333pt;}
.y13f{bottom:118.807644pt;}
.y22{bottom:123.790666pt;}
.ycb{bottom:126.005333pt;}
.y9d{bottom:129.326667pt;}
.y70{bottom:132.646667pt;}
.y13e{bottom:134.721695pt;}
.yca{bottom:141.945333pt;}
.y41{bottom:142.347733pt;}
.y207{bottom:144.241333pt;}
.y9c{bottom:148.586667pt;}
.y186{bottom:148.588000pt;}
.y1af{bottom:148.674667pt;}
.y1d0{bottom:148.737333pt;}
.y13d{bottom:150.648484pt;}
.y6f{bottom:151.908000pt;}
.yc9{bottom:157.885333pt;}
.y40{bottom:159.147200pt;}
.y159{bottom:161.522667pt;}
.y226{bottom:162.645333pt;}
.y206{bottom:163.502667pt;}
.yf2{bottom:167.848000pt;}
.y1ae{bottom:167.936000pt;}
.y1cf{bottom:167.997333pt;}
.y9b{bottom:169.198667pt;}
.y6e{bottom:171.169333pt;}
.y143{bottom:172.596116pt;}
.y19{bottom:175.052000pt;}
.y3f{bottom:176.027013pt;}
.yc8{bottom:178.646667pt;}
.y136{bottom:178.968000pt;}
.y158{bottom:180.782667pt;}
.y225{bottom:181.906667pt;}
.y205{bottom:182.762667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yf1{bottom:187.109333pt;}
.y1ad{bottom:187.197333pt;}
.y1ce{bottom:187.258667pt;}
.y9a{bottom:188.460000pt;}
.y6d{bottom:190.430667pt;}
.y3e{bottom:192.906933pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y135{bottom:198.229333pt;}
.y157{bottom:200.044000pt;}
.y113{bottom:206.370667pt;}
.y1ac{bottom:206.458667pt;}
.y1cd{bottom:206.520000pt;}
.yf0{bottom:207.676000pt;}
.y99{bottom:207.721333pt;}
.yc7{bottom:207.918667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y6c{bottom:212.977333pt;}
.y3d{bottom:213.867067pt;}
.y13c{bottom:214.788731pt;}
.y224{bottom:215.225333pt;}
.y204{bottom:216.938667pt;}
.y134{bottom:217.490667pt;}
.y156{bottom:219.305333pt;}
.y112{bottom:225.632000pt;}
.y1ab{bottom:225.720000pt;}
.y1cc{bottom:225.781333pt;}
.y185{bottom:225.789333pt;}
.yef{bottom:226.937333pt;}
.y98{bottom:226.982667pt;}
.yc6{bottom:227.180000pt;}
.y3c{bottom:230.674987pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y6b{bottom:232.238667pt;}
.y223{bottom:234.486667pt;}
.y203{bottom:236.200000pt;}
.y133{bottom:236.750667pt;}
.y155{bottom:238.566667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y111{bottom:244.893333pt;}
.y1aa{bottom:244.980000pt;}
.y1cb{bottom:245.042667pt;}
.y184{bottom:245.050667pt;}
.yee{bottom:246.198667pt;}
.yc5{bottom:246.440000pt;}
.y3b{bottom:247.467067pt;}
.y97{bottom:247.594667pt;}
.y6a{bottom:251.500000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y132{bottom:256.012000pt;}
.y13b{bottom:257.401701pt;}
.y154{bottom:257.828000pt;}
.y110{bottom:264.153333pt;}
.y1a9{bottom:264.241333pt;}
.y1ca{bottom:264.302667pt;}
.y183{bottom:264.310667pt;}
.y3a{bottom:264.346933pt;}
.yed{bottom:265.460000pt;}
.yc4{bottom:265.701333pt;}
.y96{bottom:266.854667pt;}
.y222{bottom:267.806667pt;}
.y202{bottom:270.376000pt;}
.y69{bottom:270.760000pt;}
.y131{bottom:275.273333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y153{bottom:277.089333pt;}
.y10f{bottom:283.414667pt;}
.y1a8{bottom:283.502667pt;}
.y182{bottom:283.572000pt;}
.y1c9{bottom:283.713333pt;}
.yec{bottom:284.721333pt;}
.yc3{bottom:284.962667pt;}
.y95{bottom:286.116000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y221{bottom:287.066667pt;}
.y201{bottom:289.637333pt;}
.y68{bottom:290.021333pt;}
.y139{bottom:293.998074pt;}
.y130{bottom:294.534667pt;}
.y152{bottom:296.349333pt;}
.y1a7{bottom:302.764000pt;}
.y181{bottom:302.833333pt;}
.y1c8{bottom:302.974667pt;}
.y10e{bottom:303.620000pt;}
.yeb{bottom:303.981333pt;}
.yc2{bottom:304.224000pt;}
.y13a{bottom:305.177821pt;}
.y94{bottom:305.377333pt;}
.y138{bottom:308.621337pt;}
.y200{bottom:308.898667pt;}
.y67{bottom:309.282667pt;}
.y10{bottom:309.452000pt;}
.y12f{bottom:313.796000pt;}
.y151{bottom:315.610667pt;}
.y220{bottom:320.386667pt;}
.y1a6{bottom:322.025333pt;}
.y180{bottom:322.094667pt;}
.y1c7{bottom:322.236000pt;}
.y10d{bottom:322.880000pt;}
.yea{bottom:323.242667pt;}
.yc1{bottom:323.485333pt;}
.y93{bottom:324.638667pt;}
.y66{bottom:328.544000pt;}
.y39{bottom:329.307627pt;}
.y12e{bottom:333.057333pt;}
.y150{bottom:334.872000pt;}
.y21f{bottom:339.648000pt;}
.y17f{bottom:341.356000pt;}
.y1a5{bottom:341.373333pt;}
.y1c6{bottom:341.497333pt;}
.y10c{bottom:342.141333pt;}
.ye9{bottom:342.504000pt;}
.yc0{bottom:342.746667pt;}
.y1ff{bottom:343.074667pt;}
.yf{bottom:343.809333pt;}
.y92{bottom:343.900000pt;}
.y38{bottom:346.187547pt;}
.y65{bottom:347.805333pt;}
.y12d{bottom:349.926667pt;}
.y12c{bottom:352.317333pt;}
.y14f{bottom:354.133333pt;}
.y21e{bottom:358.908000pt;}
.y17e{bottom:360.616000pt;}
.y1a4{bottom:360.634667pt;}
.y1c5{bottom:360.758667pt;}
.y10b{bottom:361.402667pt;}
.ye8{bottom:361.765333pt;}
.ybf{bottom:362.006667pt;}
.y1fe{bottom:362.336000pt;}
.ye{bottom:362.706666pt;}
.y37{bottom:363.067467pt;}
.y91{bottom:363.161333pt;}
.y64{bottom:367.066667pt;}
.y12b{bottom:371.578667pt;}
.y14e{bottom:373.394667pt;}
.y17d{bottom:379.877333pt;}
.y1a3{bottom:379.896000pt;}
.y1c4{bottom:380.018667pt;}
.y10a{bottom:380.664000pt;}
.ye7{bottom:381.026667pt;}
.ybe{bottom:382.418667pt;}
.y90{bottom:382.421333pt;}
.y36{bottom:383.946933pt;}
.y63{bottom:386.326667pt;}
.y12a{bottom:390.840000pt;}
.y21d{bottom:392.228000pt;}
.y14d{bottom:392.656000pt;}
.y1fd{bottom:396.512000pt;}
.y17c{bottom:399.138667pt;}
.y1a2{bottom:399.157333pt;}
.y1c3{bottom:399.280000pt;}
.y109{bottom:399.925333pt;}
.ye6{bottom:401.593333pt;}
.ybd{bottom:401.680000pt;}
.y8f{bottom:403.033333pt;}
.y62{bottom:405.588000pt;}
.y129{bottom:410.101333pt;}
.y14c{bottom:411.916000pt;}
.y1fc{bottom:415.772000pt;}
.y1a1{bottom:418.418667pt;}
.y1c2{bottom:418.541333pt;}
.y17b{bottom:418.557333pt;}
.y108{bottom:419.186667pt;}
.ye5{bottom:420.854667pt;}
.ybc{bottom:420.941333pt;}
.y8e{bottom:422.294667pt;}
.y35{bottom:424.748533pt;}
.y61{bottom:424.849333pt;}
.y21c{bottom:425.546667pt;}
.y128{bottom:429.362667pt;}
.yd{bottom:430.990669pt;}
.y14b{bottom:431.177333pt;}
.y1a0{bottom:437.680000pt;}
.y1c1{bottom:437.802667pt;}
.y17a{bottom:437.818667pt;}
.y107{bottom:438.446667pt;}
.ye4{bottom:440.116000pt;}
.ybb{bottom:440.202667pt;}
.y8d{bottom:441.556000pt;}
.y21b{bottom:444.808000pt;}
.yc{bottom:446.990669pt;}
.y60{bottom:447.396000pt;}
.y127{bottom:448.624000pt;}
.y1fb{bottom:449.948000pt;}
.y14a{bottom:450.438667pt;}
.y19f{bottom:456.940000pt;}
.y1c0{bottom:457.064000pt;}
.y179{bottom:457.078667pt;}
.y34{bottom:457.643147pt;}
.y106{bottom:457.708000pt;}
.y1e6{bottom:458.586667pt;}
.ye3{bottom:459.376000pt;}
.yba{bottom:459.464000pt;}
.y8c{bottom:460.817333pt;}
.yb{bottom:462.990669pt;}
.y5f{bottom:466.657333pt;}
.y126{bottom:467.884000pt;}
.y1fa{bottom:469.209333pt;}
.y149{bottom:469.700000pt;}
.y33{bottom:474.523067pt;}
.y19e{bottom:476.201333pt;}
.y178{bottom:476.340000pt;}
.y1bf{bottom:476.473333pt;}
.y105{bottom:476.969333pt;}
.y1e5{bottom:477.846667pt;}
.y21a{bottom:478.128000pt;}
.ye2{bottom:478.637333pt;}
.yb9{bottom:478.725333pt;}
.ya{bottom:478.990666pt;}
.y8b{bottom:480.078667pt;}
.y5e{bottom:485.918667pt;}
.y125{bottom:487.145333pt;}
.y1f9{bottom:488.470667pt;}
.y148{bottom:488.961333pt;}
.y249{bottom:491.147067pt;}
.y32{bottom:491.402987pt;}
.y9{bottom:494.990666pt;}
.y19d{bottom:495.462667pt;}
.y177{bottom:495.601333pt;}
.y1be{bottom:495.734667pt;}
.y104{bottom:496.230667pt;}
.y1e4{bottom:497.108000pt;}
.y219{bottom:497.388000pt;}
.yb8{bottom:497.985333pt;}
.ye1{bottom:499.204000pt;}
.y8a{bottom:499.338667pt;}
.y5d{bottom:505.180000pt;}
.y124{bottom:506.406667pt;}
.y147{bottom:508.221333pt;}
.y31{bottom:508.282907pt;}
.y248{bottom:509.707333pt;}
.y19c{bottom:514.724000pt;}
.y176{bottom:514.862667pt;}
.y1bd{bottom:514.996000pt;}
.y103{bottom:515.492000pt;}
.y1e3{bottom:516.369333pt;}
.y218{bottom:516.649333pt;}
.yb7{bottom:517.246667pt;}
.ye0{bottom:518.465333pt;}
.y89{bottom:518.600000pt;}
.y1f8{bottom:522.646667pt;}
.y5c{bottom:524.441333pt;}
.y30{bottom:525.074987pt;}
.y123{bottom:525.668000pt;}
.y146{bottom:527.482667pt;}
.y19b{bottom:534.072000pt;}
.y175{bottom:534.124000pt;}
.y1bc{bottom:534.257333pt;}
.y1e2{bottom:535.630667pt;}
.y102{bottom:535.696000pt;}
.yb6{bottom:536.508000pt;}
.ydf{bottom:537.726667pt;}
.y88{bottom:537.861333pt;}
.y1f7{bottom:541.908000pt;}
.y2f{bottom:541.954907pt;}
.y5b{bottom:543.701333pt;}
.y237{bottom:544.210667pt;}
.y122{bottom:544.929333pt;}
.y247{bottom:546.267067pt;}
.y217{bottom:549.969333pt;}
.y19a{bottom:553.333333pt;}
.y174{bottom:553.385333pt;}
.y1bb{bottom:553.518667pt;}
.y1e1{bottom:554.892000pt;}
.yb5{bottom:555.769333pt;}
.y101{bottom:555.901333pt;}
.y87{bottom:557.122667pt;}
.yde{bottom:558.293333pt;}
.y2e{bottom:558.834827pt;}
.y1f6{bottom:561.169333pt;}
.y5a{bottom:562.962667pt;}
.y236{bottom:563.472000pt;}
.y121{bottom:564.189333pt;}
.y216{bottom:569.230667pt;}
.y199{bottom:572.594667pt;}
.y173{bottom:572.645333pt;}
.y1ba{bottom:572.780000pt;}
.y8{bottom:573.786667pt;}
.y1e0{bottom:574.152000pt;}
.yb4{bottom:575.030667pt;}
.y2d{bottom:575.714747pt;}
.y100{bottom:576.105333pt;}
.y86{bottom:576.384000pt;}
.ydd{bottom:577.554667pt;}
.y59{bottom:582.224000pt;}
.y235{bottom:582.733333pt;}
.y145{bottom:583.052000pt;}
.y120{bottom:583.450667pt;}
.y246{bottom:583.707467pt;}
.y198{bottom:591.856000pt;}
.y1b9{bottom:592.040000pt;}
.y172{bottom:592.064000pt;}
.y2c{bottom:592.594667pt;}
.y7{bottom:592.685334pt;}
.y1df{bottom:593.413333pt;}
.yb3{bottom:594.292000pt;}
.y1f5{bottom:595.345333pt;}
.y85{bottom:595.645333pt;}
.yff{bottom:596.309333pt;}
.ydc{bottom:596.816000pt;}
.y58{bottom:601.485333pt;}
.y137{bottom:602.313333pt;}
.y215{bottom:602.549333pt;}
.y11f{bottom:602.712000pt;}
.y2b{bottom:609.386747pt;}
.y197{bottom:611.117333pt;}
.y1b8{bottom:611.301333pt;}
.y171{bottom:611.325333pt;}
.y245{bottom:612.347200pt;}
.y1de{bottom:612.674667pt;}
.yb2{bottom:613.552000pt;}
.y1f4{bottom:614.605333pt;}
.y84{bottom:614.905333pt;}
.y234{bottom:615.277333pt;}
.ydb{bottom:616.077333pt;}
.yfe{bottom:616.514667pt;}
.y214{bottom:621.810667pt;}
.y11e{bottom:621.973333pt;}
.y57{bottom:624.032000pt;}
.y2a{bottom:626.266667pt;}
.y196{bottom:630.378667pt;}
.y1dd{bottom:631.936000pt;}
.yb1{bottom:632.813333pt;}
.y83{bottom:634.166667pt;}
.y233{bottom:634.538667pt;}
.yda{bottom:635.338667pt;}
.yfd{bottom:635.776000pt;}
.y244{bottom:640.987067pt;}
.y11d{bottom:641.234667pt;}
.y170{bottom:642.718667pt;}
.y56{bottom:643.293333pt;}
.y6{bottom:645.598667pt;}
.y1b7{bottom:646.648000pt;}
.y16f{bottom:646.660000pt;}
.y1f3{bottom:648.781333pt;}
.y195{bottom:649.638667pt;}
.y1dc{bottom:651.197333pt;}
.yb0{bottom:653.225333pt;}
.y82{bottom:653.428000pt;}
.y232{bottom:653.800000pt;}
.yfc{bottom:655.036000pt;}
.y213{bottom:655.129333pt;}
.yd9{bottom:655.905333pt;}
.y29{bottom:658.987067pt;}
.y11c{bottom:660.496000pt;}
.y55{bottom:662.554667pt;}
.y194{bottom:668.900000pt;}
.y3{bottom:668.977329pt;}
.y243{bottom:669.707067pt;}
.y1db{bottom:670.458667pt;}
.yaf{bottom:672.486667pt;}
.y81{bottom:672.689333pt;}
.yfb{bottom:674.297333pt;}
.y212{bottom:674.390667pt;}
.yd8{bottom:675.166667pt;}
.y11b{bottom:679.756000pt;}
.y16e{bottom:681.728000pt;}
.y54{bottom:681.816000pt;}
.y1f2{bottom:682.957333pt;}
.y231{bottom:686.344000pt;}
.y193{bottom:688.249333pt;}
.y1da{bottom:689.718667pt;}
.yae{bottom:691.748000pt;}
.y80{bottom:691.950667pt;}
.yfa{bottom:693.558667pt;}
.y211{bottom:693.652000pt;}
.yd7{bottom:694.426667pt;}
.y242{bottom:698.347467pt;}
.y11a{bottom:699.017333pt;}
.y1b6{bottom:700.806667pt;}
.y16d{bottom:700.989333pt;}
.y53{bottom:701.076000pt;}
.y1f1{bottom:702.218667pt;}
.y230{bottom:705.605333pt;}
.y192{bottom:707.510667pt;}
.y1d9{bottom:708.980000pt;}
.y7f{bottom:711.210667pt;}
.yad{bottom:712.160000pt;}
.yf9{bottom:712.820000pt;}
.yd6{bottom:714.994667pt;}
.y1b5{bottom:720.068000pt;}
.y16c{bottom:720.249333pt;}
.y52{bottom:720.337333pt;}
.y22f{bottom:724.866667pt;}
.y191{bottom:726.772000pt;}
.y210{bottom:726.970667pt;}
.y241{bottom:727.059333pt;}
.y1d8{bottom:728.241333pt;}
.y7e{bottom:731.822667pt;}
.y28{bottom:732.427067pt;}
.yac{bottom:732.572000pt;}
.y119{bottom:734.060000pt;}
.yd5{bottom:734.254667pt;}
.y1f0{bottom:736.394667pt;}
.y1b4{bottom:739.329333pt;}
.y51{bottom:739.598667pt;}
.y16b{bottom:739.668000pt;}
.y240{bottom:742.423333pt;}
.yf8{bottom:744.292000pt;}
.y190{bottom:746.032000pt;}
.y20f{bottom:746.232000pt;}
.y1d7{bottom:747.502667pt;}
.y7d{bottom:751.084000pt;}
.yab{bottom:751.833333pt;}
.yd4{bottom:753.516000pt;}
.y1ef{bottom:755.656000pt;}
.y27{bottom:756.747067pt;}
.y22e{bottom:757.410667pt;}
.y23f{bottom:757.787333pt;}
.y1b3{bottom:758.590667pt;}
.y50{bottom:758.860000pt;}
.y16a{bottom:758.929333pt;}
.y118{bottom:763.284000pt;}
.y18f{bottom:765.293333pt;}
.y1d6{bottom:766.764000pt;}
.y7c{bottom:770.345333pt;}
.yaa{bottom:772.245333pt;}
.yd3{bottom:772.777333pt;}
.y22d{bottom:776.672000pt;}
.y1b2{bottom:777.852000pt;}
.y4f{bottom:778.121333pt;}
.y169{bottom:778.190667pt;}
.y20e{bottom:779.552000pt;}
.y2{bottom:781.661334pt;}
.y1d5{bottom:786.025333pt;}
.y23e{bottom:786.347067pt;}
.y7b{bottom:789.606667pt;}
.y1ee{bottom:789.832000pt;}
.yd2{bottom:792.038667pt;}
.ya9{bottom:792.657333pt;}
.y22c{bottom:795.933333pt;}
.yf7{bottom:796.318667pt;}
.y1b1{bottom:797.112000pt;}
.y4e{bottom:797.381333pt;}
.y20d{bottom:798.812000pt;}
.y26{bottom:799.387067pt;}
.y18e{bottom:800.628000pt;}
.y1d4{bottom:805.285333pt;}
.y7a{bottom:808.868000pt;}
.y1ed{bottom:809.093333pt;}
.y167{bottom:810.073333pt;}
.y168{bottom:810.105333pt;}
.yd1{bottom:811.300000pt;}
.ya8{bottom:813.069333pt;}
.y166{bottom:814.013333pt;}
.yf6{bottom:815.580000pt;}
.y23d{bottom:815.707067pt;}
.y1b0{bottom:816.373333pt;}
.y117{bottom:816.522667pt;}
.y4d{bottom:816.642667pt;}
.y1d3{bottom:824.546667pt;}
.y25{bottom:826.987067pt;}
.y79{bottom:828.128000pt;}
.y1ec{bottom:828.354667pt;}
.y22b{bottom:828.478667pt;}
.yd0{bottom:830.561333pt;}
.y20c{bottom:832.132000pt;}
.y165{bottom:833.274667pt;}
.ya7{bottom:833.481333pt;}
.yf5{bottom:834.840000pt;}
.y18d{bottom:835.696000pt;}
.y116{bottom:835.784000pt;}
.y4c{bottom:835.904000pt;}
.y1d2{bottom:843.808000pt;}
.y78{bottom:847.389333pt;}
.y23c{bottom:847.467067pt;}
.y1eb{bottom:847.614667pt;}
.y22a{bottom:847.738667pt;}
.ycf{bottom:849.821333pt;}
.y164{bottom:852.536000pt;}
.ya6{bottom:853.894667pt;}
.yf4{bottom:854.101333pt;}
.y24{bottom:854.587067pt;}
.y18c{bottom:854.957333pt;}
.y115{bottom:855.045333pt;}
.y4b{bottom:855.165333pt;}
.y1{bottom:859.312000pt;}
.y20b{bottom:865.450667pt;}
.y77{bottom:866.650667pt;}
.y163{bottom:867.856000pt;}
.yce{bottom:870.389333pt;}
.y162{bottom:871.797333pt;}
.ya5{bottom:873.154667pt;}
.yf3{bottom:873.362667pt;}
.y18b{bottom:874.218667pt;}
.y114{bottom:874.306667pt;}
.y4a{bottom:874.426667pt;}
.y1d1{bottom:878.850667pt;}
.y23b{bottom:879.147067pt;}
.y229{bottom:880.284000pt;}
.y1ea{bottom:881.790667pt;}
.y20a{bottom:884.712000pt;}
.y76{bottom:885.912000pt;}
.y161{bottom:887.117333pt;}
.ycd{bottom:890.956000pt;}
.y160{bottom:891.058667pt;}
.y18a{bottom:893.480000pt;}
.ya4{bottom:893.566667pt;}
.y49{bottom:893.688000pt;}
.y228{bottom:899.545333pt;}
.y1e9{bottom:901.052000pt;}
.y15e{bottom:905.670667pt;}
.y15f{bottom:906.378667pt;}
.y15d{bottom:910.318667pt;}
.y23a{bottom:910.907067pt;}
.ycc{bottom:911.522667pt;}
.y189{bottom:912.740000pt;}
.ya3{bottom:912.828000pt;}
.y48{bottom:912.948000pt;}
.y209{bottom:918.032000pt;}
.y75{bottom:918.210667pt;}
.y227{bottom:918.805333pt;}
.y15c{bottom:926.886667pt;}
.y15b{bottom:930.828000pt;}
.y188{bottom:932.001333pt;}
.ya2{bottom:932.089333pt;}
.y47{bottom:932.209333pt;}
.y1e8{bottom:935.228000pt;}
.y208{bottom:937.292000pt;}
.y239{bottom:942.667067pt;}
.y187{bottom:951.262667pt;}
.ya1{bottom:951.350667pt;}
.y46{bottom:951.470667pt;}
.y1e7{bottom:954.489333pt;}
.y15a{bottom:958.590667pt;}
.y74{bottom:960.649333pt;}
.y23{bottom:961.627067pt;}
.y238{bottom:967.387067pt;}
.ya0{bottom:970.612000pt;}
.y73{bottom:989.873333pt;}
.y45{bottom:993.193333pt;}
.y44{bottom:1044.800000pt;}
.h17{height:27.896000pt;}
.h7{height:28.560000pt;}
.h1c{height:30.120773pt;}
.h1e{height:38.221666pt;}
.h18{height:39.852000pt;}
.h6{height:40.800000pt;}
.h31{height:41.658217pt;}
.h14{height:41.704198pt;}
.h3{height:42.840000pt;}
.h1f{height:43.150887pt;}
.h11{height:43.636000pt;}
.h2e{height:43.636400pt;}
.h8{height:44.388750pt;}
.hf{height:47.109375pt;}
.h13{height:47.820000pt;}
.h30{height:47.820800pt;}
.h2{height:48.960000pt;}
.h25{height:51.466859pt;}
.h19{height:51.472193pt;}
.hb{height:52.422344pt;}
.h20{height:52.629151pt;}
.h2a{height:52.634484pt;}
.h16{height:55.016000pt;}
.h33{height:55.736250pt;}
.h1a{height:57.382667pt;}
.h15{height:57.384000pt;}
.he{height:57.444844pt;}
.hd{height:57.473437pt;}
.h1d{height:57.534516pt;}
.hc{height:59.017500pt;}
.h29{height:59.320138pt;}
.h22{height:59.328193pt;}
.h2d{height:60.276453pt;}
.h27{height:60.409786pt;}
.h32{height:62.812500pt;}
.h24{height:63.580000pt;}
.h21{height:63.585333pt;}
.h28{height:67.232193pt;}
.h2c{height:68.266484pt;}
.h26{height:68.394484pt;}
.h12{height:68.860000pt;}
.h2f{height:68.861600pt;}
.h5{height:69.360000pt;}
.h23{height:70.064193pt;}
.h2b{height:71.642484pt;}
.ha{height:73.140156pt;}
.h34{height:83.812969pt;}
.h9{height:96.750000pt;}
.h4{height:105.826671pt;}
.h1b{height:328.428980pt;}
.h0{height:1122.518667pt;}
.h10{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:350.854870pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:24.106032pt;}
.x16{left:31.512735pt;}
.x1a{left:52.833262pt;}
.x17{left:57.006953pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:113.385333pt;}
.x12{left:126.666667pt;}
.x1c{left:129.781689pt;}
.x11{left:131.332000pt;}
.xe{left:136.797333pt;}
.xc{left:150.160000pt;}
.x5{left:151.200000pt;}
.x10{left:152.110667pt;}
.x19{left:158.974691pt;}
.x20{left:160.376000pt;}
.x1e{left:168.214667pt;}
.x18{left:171.956970pt;}
.x1d{left:173.249333pt;}
.x1b{left:174.276702pt;}
.x4{left:180.874667pt;}
.x14{left:184.468909pt;}
.x26{left:199.429333pt;}
.x6{left:204.560000pt;}
.x2b{left:243.589333pt;}
.x7{left:245.192000pt;}
.x8{left:259.832000pt;}
.x27{left:279.758667pt;}
.x2c{left:313.641333pt;}
.xa{left:355.680000pt;}
.x9{left:363.280000pt;}
.x2d{left:369.266667pt;}
.x28{left:371.905333pt;}
.x21{left:403.270667pt;}
.x3{left:404.408000pt;}
.x23{left:413.452000pt;}
.x1f{left:429.112000pt;}
.x22{left:489.302667pt;}
.xf{left:500.648000pt;}
.x24{left:509.121333pt;}
.x29{left:512.176000pt;}
.x2a{left:534.573333pt;}
.x13{left:559.569333pt;}
.x25{left:572.298667pt;}
.xb{left:665.120000pt;}
}




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