
    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_98db951f5ea4d2b3a2961dd6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight: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_e02a9d1991d298049ddb5c11.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight: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_d18b14db487c414ef5a63d3e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight: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_64c178a1422404f2c5fb4248.woff')format("woff");}.ff4{font-family:ff4;line-height:0.528000;font-style:normal;font-weight: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_d26a10ea82773ff3b09f57ba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006348;font-style:normal;font-weight: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_db60b82b5ae794125cd684ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;font-style:normal;font-weight: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_288e1c3b718c5b48b4ce1c2d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.211426;font-style:normal;font-weight: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_273567b02685d2402f113574.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ee01e62b3b0f9542ae6fe98f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.727539;font-style:normal;font-weight: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_52996d97295cc90c0976f148.woff')format("woff");}.ffa{font-family:ffa;line-height:0.745117;font-style:normal;font-weight: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_450e2d63d8cafd193b174d6e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.858398;font-style:normal;font-weight: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_5a3ba424acf454f3134bdcc1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.683105;font-style:normal;font-weight: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_9c0361383a69fe90f0aa363e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.956543;font-style:normal;font-weight: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_9d6017374375208c08cba5b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight: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_c9e2933c65786d2d693448de.woff')format("woff");}.fff{font-family:fff;line-height:0.740000;font-style:normal;font-weight: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_3809a6e2de606e99ffd32254.woff')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight: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_19d50e7ad5c4e0a7dd82512a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.006836;font-style:normal;font-weight: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_3dcac63119f458d9c641c682.woff')format("woff");}.ff12{font-family:ff12;line-height:1.211426;font-style:normal;font-weight: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_ee01e62b3b0f9542ae6fe98f.woff')format("woff");}.ff13{font-family:ff13;line-height:0.727539;font-style:normal;font-weight: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_3809a6e2de606e99ffd32254.woff')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight: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_19d50e7ad5c4e0a7dd82512a.woff')format("woff");}.ff15{font-family:ff15;line-height:1.006836;font-style:normal;font-weight: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_3dcac63119f458d9c641c682.woff')format("woff");}.ff16{font-family:ff16;line-height:1.211426;font-style:normal;font-weight: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_ee01e62b3b0f9542ae6fe98f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.727539;font-style:normal;font-weight: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_9a7d5b503a437a16bf983036.woff')format("woff");}.ff18{font-family:ff18;line-height:1.014160;font-style:normal;font-weight: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_fbf62c3114e7ae087f419362.woff')format("woff");}.ff19{font-family:ff19;line-height:1.006836;font-style:normal;font-weight: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_91a4f504eaf7c77e8cfe8a3e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.211426;font-style:normal;font-weight: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_9c06650d3f7e8dfddce18b40.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.006836;font-style:normal;font-weight: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_2b08c72541850fa1b9904bd0.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.211426;font-style:normal;font-weight: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_45afa02f5987b38852f388c3.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.054688;font-style:normal;font-weight: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_5ed8bac5407754d4278639ac.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.014160;font-style:normal;font-weight: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_60409f90ae49ef91f567750b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.172852;font-style:normal;font-weight: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_e6b7c9eb45c9efd4a71259c4.woff')format("woff");}.ff20{font-family:ff20;line-height:0.771973;font-style:normal;font-weight: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_273e0f16d2d76c0cfba4760b.woff')format("woff");}.ff21{font-family:ff21;line-height:0.695000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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:-38.158164px;}
.v4{vertical-align:-27.600000px;}
.v3{vertical-align:-19.082088px;}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.ls4b{letter-spacing:-0.373200px;}
.ls20{letter-spacing:-0.366732px;}
.ls41{letter-spacing:-0.340200px;}
.ls1e{letter-spacing:-0.270540px;}
.ls29{letter-spacing:-0.258516px;}
.ls4c{letter-spacing:-0.180000px;}
.ls44{letter-spacing:-0.162324px;}
.ls4e{letter-spacing:-0.126000px;}
.ls46{letter-spacing:-0.120240px;}
.ls24{letter-spacing:-0.108216px;}
.ls26{letter-spacing:-0.102204px;}
.ls28{letter-spacing:-0.090180px;}
.ls2c{letter-spacing:-0.085644px;}
.ls1b{letter-spacing:-0.066132px;}
.ls27{letter-spacing:-0.060120px;}
.ls43{letter-spacing:-0.054108px;}
.ls1c{letter-spacing:-0.048096px;}
.ls45{letter-spacing:-0.036072px;}
.ls21{letter-spacing:-0.030060px;}
.ls40{letter-spacing:-0.027000px;}
.ls42{letter-spacing:-0.018036px;}
.ls1d{letter-spacing:-0.006012px;}
.ls1f{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.000800px;}
.ls58{letter-spacing:0.002841px;}
.ls52{letter-spacing:0.004090px;}
.ls8{letter-spacing:0.004788px;}
.ls55{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.005400px;}
.ls33{letter-spacing:0.009576px;}
.ls17{letter-spacing:0.012024px;}
.lsf{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.018036px;}
.lsc{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.027000px;}
.ls14{letter-spacing:0.030060px;}
.ls37{letter-spacing:0.032400px;}
.ls19{letter-spacing:0.036072px;}
.ls38{letter-spacing:0.037800px;}
.ls12{letter-spacing:0.042084px;}
.lsa{letter-spacing:0.043092px;}
.ls16{letter-spacing:0.048096px;}
.ls36{letter-spacing:0.052668px;}
.ls15{letter-spacing:0.054108px;}
.ls3d{letter-spacing:0.059400px;}
.ls13{letter-spacing:0.060120px;}
.lse{letter-spacing:0.066132px;}
.ls22{letter-spacing:0.072144px;}
.ls49{letter-spacing:0.090000px;}
.ls3b{letter-spacing:0.096192px;}
.ls39{letter-spacing:0.102600px;}
.ls23{letter-spacing:0.108216px;}
.ls4f{letter-spacing:0.119400px;}
.ls3c{letter-spacing:0.120240px;}
.ls2b{letter-spacing:0.122400px;}
.ls2a{letter-spacing:0.126252px;}
.ls3e{letter-spacing:0.135000px;}
.ls25{letter-spacing:0.138276px;}
.ls4d{letter-spacing:0.139800px;}
.lsb{letter-spacing:0.167580px;}
.ls48{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181944px;}
.ls34{letter-spacing:0.191520px;}
.ls3a{letter-spacing:0.192384px;}
.ls30{letter-spacing:0.578693px;}
.ls0{letter-spacing:8.367300px;}
.ls35{letter-spacing:11.797632px;}
.ls2f{letter-spacing:11.951700px;}
.ls6{letter-spacing:11.954850px;}
.ls2e{letter-spacing:11.957700px;}
.ls59{letter-spacing:13.191576px;}
.ls57{letter-spacing:13.311624px;}
.ls56{letter-spacing:13.342890px;}
.ls2d{letter-spacing:13.444800px;}
.ls53{letter-spacing:13.448400px;}
.ls47{letter-spacing:13.450800px;}
.ls4a{letter-spacing:13.452422px;}
.ls54{letter-spacing:13.454400px;}
.ls5b{letter-spacing:14.362165px;}
.ls4{letter-spacing:14.692909px;}
.ls2{letter-spacing:14.770719px;}
.ls3{letter-spacing:14.776671px;}
.ls51{letter-spacing:14.890643px;}
.ls5{letter-spacing:15.076055px;}
.ls32{letter-spacing:15.523965px;}
.ls31{letter-spacing:18.388671px;}
.ls3f{letter-spacing:23.959152px;}
.ls1{letter-spacing:28.453654px;}
.ls50{letter-spacing:33.523965px;}
.ls1a{letter-spacing:193.081392px;}
.ls18{letter-spacing:848.961792px;}
.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;}
}
.wsc4{word-spacing:-54.000000px;}
.ws51{word-spacing:-15.750000px;}
.wsc3{word-spacing:-15.169800px;}
.wsc1{word-spacing:-15.030000px;}
.wsc2{word-spacing:-14.656800px;}
.ws9d{word-spacing:-13.635000px;}
.wsc6{word-spacing:-13.587120px;}
.wsed{word-spacing:-13.449600px;}
.ws9c{word-spacing:-12.161520px;}
.wsa0{word-spacing:-12.156732px;}
.ws4f{word-spacing:-12.151944px;}
.wsc0{word-spacing:-12.150000px;}
.ws50{word-spacing:-11.970000px;}
.ws28{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.wsd7{word-spacing:-3.048556px;}
.ws7d{word-spacing:-2.819628px;}
.ws7e{word-spacing:-2.759508px;}
.ws3a{word-spacing:-2.570351px;}
.wsdb{word-spacing:-2.391024px;}
.ws39{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws2{word-spacing:-2.050297px;}
.wse5{word-spacing:-2.044339px;}
.ws60{word-spacing:-2.032370px;}
.ws87{word-spacing:-1.977948px;}
.ws88{word-spacing:-1.965924px;}
.wsf0{word-spacing:-1.914292px;}
.wscf{word-spacing:-1.853044px;}
.ws9e{word-spacing:-1.775347px;}
.wsdf{word-spacing:-1.673717px;}
.wsaf{word-spacing:-1.412820px;}
.wsa5{word-spacing:-1.328652px;}
.wscd{word-spacing:-1.315063px;}
.wsa6{word-spacing:-1.292580px;}
.wsae{word-spacing:-1.238472px;}
.ws15{word-spacing:-1.195512px;}
.wsce{word-spacing:-1.075961px;}
.ws2f{word-spacing:-0.836858px;}
.wse{word-spacing:-0.717307px;}
.ws7a{word-spacing:-0.691380px;}
.ws4d{word-spacing:-0.657532px;}
.ws57{word-spacing:-0.621668px;}
.ws4c{word-spacing:-0.597756px;}
.ws2d{word-spacing:-0.478205px;}
.wsb9{word-spacing:-0.418429px;}
.ws33{word-spacing:-0.358654px;}
.wse8{word-spacing:-0.322790px;}
.ws7b{word-spacing:-0.312624px;}
.ws26{word-spacing:-0.298878px;}
.ws63{word-spacing:-0.272916px;}
.wsfd{word-spacing:-0.268992px;}
.ws6c{word-spacing:-0.264528px;}
.ws13{word-spacing:-0.239102px;}
.wsf6{word-spacing:-0.229621px;}
.ws7c{word-spacing:-0.222444px;}
.wsba{word-spacing:-0.215194px;}
.ws67{word-spacing:-0.199800px;}
.ws11{word-spacing:-0.179327px;}
.ws90{word-spacing:-0.161395px;}
.ws9f{word-spacing:-0.138852px;}
.ws64{word-spacing:-0.134064px;}
.ws2e{word-spacing:-0.119551px;}
.wsc7{word-spacing:-0.107597px;}
.ws62{word-spacing:-0.095760px;}
.ws52{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.059776px;}
.wsb1{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.047821px;}
.ws8a{word-spacing:-0.046116px;}
.ws5{word-spacing:-0.041843px;}
.wsf3{word-spacing:-0.021571px;}
.ws93{word-spacing:-0.021169px;}
.ws92{word-spacing:-0.016753px;}
.wsb3{word-spacing:-0.016610px;}
.ws102{word-spacing:-0.006854px;}
.wsc9{word-spacing:-0.004350px;}
.wsbe{word-spacing:-0.001129px;}
.wsb2{word-spacing:-0.000560px;}
.ws7{word-spacing:0.000000px;}
.ws95{word-spacing:0.001650px;}
.ws91{word-spacing:0.003487px;}
.ws6b{word-spacing:0.024048px;}
.ws84{word-spacing:0.036072px;}
.wsb8{word-spacing:0.053798px;}
.wsb0{word-spacing:0.054108px;}
.ws22{word-spacing:0.059776px;}
.ws77{word-spacing:0.072144px;}
.ws7f{word-spacing:0.096192px;}
.wsbd{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.wsad{word-spacing:0.124200px;}
.wsa3{word-spacing:0.145800px;}
.wsa1{word-spacing:0.151200px;}
.ws74{word-spacing:0.156600px;}
.wsbc{word-spacing:0.161395px;}
.ws6e{word-spacing:0.162000px;}
.ws66{word-spacing:0.178200px;}
.ws18{word-spacing:0.179327px;}
.ws6d{word-spacing:0.183600px;}
.ws89{word-spacing:0.192384px;}
.wsa2{word-spacing:0.210600px;}
.wsc8{word-spacing:0.215194px;}
.wsac{word-spacing:0.216432px;}
.wsc{word-spacing:0.239102px;}
.wsea{word-spacing:0.268992px;}
.ws23{word-spacing:0.298878px;}
.ws83{word-spacing:0.312624px;}
.wsef{word-spacing:0.322790px;}
.wsa9{word-spacing:0.336672px;}
.ws21{word-spacing:0.358654px;}
.wsf5{word-spacing:0.376589px;}
.ws10{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.wsa8{word-spacing:0.444888px;}
.wsde{word-spacing:0.478205px;}
.wsa4{word-spacing:0.523800px;}
.wse0{word-spacing:0.537980px;}
.ws9b{word-spacing:0.597756px;}
.ws94{word-spacing:0.600279px;}
.wsa7{word-spacing:0.619236px;}
.ws30{word-spacing:0.657532px;}
.ws112{word-spacing:0.699379px;}
.ws34{word-spacing:0.717307px;}
.wsbb{word-spacing:0.836858px;}
.wse6{word-spacing:0.860774px;}
.ws114{word-spacing:0.914573px;}
.ws19{word-spacing:0.956410px;}
.wsda{word-spacing:1.075961px;}
.wscb{word-spacing:1.135736px;}
.ws4a{word-spacing:1.195512px;}
.ws4e{word-spacing:1.315063px;}
.ws1f{word-spacing:1.374839px;}
.ws3f{word-spacing:1.554166px;}
.ws35{word-spacing:1.613941px;}
.ws32{word-spacing:1.733492px;}
.ws82{word-spacing:1.779552px;}
.wsdc{word-spacing:1.793268px;}
.wsd5{word-spacing:1.853044px;}
.ws99{word-spacing:1.912819px;}
.wsfc{word-spacing:1.936742px;}
.wsd0{word-spacing:1.972595px;}
.ws3c{word-spacing:2.032370px;}
.ws3b{word-spacing:2.092146px;}
.ws10b{word-spacing:2.098138px;}
.ws81{word-spacing:2.176344px;}
.ws80{word-spacing:2.194380px;}
.wsf8{word-spacing:2.259533px;}
.wsaa{word-spacing:2.272536px;}
.wsab{word-spacing:2.290572px;}
.wsa{word-spacing:2.331248px;}
.wsd8{word-spacing:2.391024px;}
.wse3{word-spacing:2.450800px;}
.wsd9{word-spacing:2.510575px;}
.ws1c{word-spacing:2.570351px;}
.ws2c{word-spacing:2.630126px;}
.ws6a{word-spacing:2.657304px;}
.ws46{word-spacing:2.689902px;}
.ws10f{word-spacing:2.689920px;}
.ws41{word-spacing:2.749678px;}
.wsca{word-spacing:2.809453px;}
.ws8{word-spacing:2.869236px;}
.ws31{word-spacing:2.929004px;}
.ws1e{word-spacing:2.988780px;}
.ws40{word-spacing:3.108331px;}
.ws10e{word-spacing:3.219158px;}
.wsf9{word-spacing:3.223680px;}
.wse7{word-spacing:3.224822px;}
.wse4{word-spacing:3.227904px;}
.ws55{word-spacing:3.407209px;}
.wsf{word-spacing:3.458427px;}
.ws2a{word-spacing:3.466985px;}
.ws117{word-spacing:3.496896px;}
.wscc{word-spacing:3.526760px;}
.ws1a{word-spacing:3.583475px;}
.wse2{word-spacing:3.586536px;}
.ws3e{word-spacing:3.646312px;}
.ws4b{word-spacing:3.706087px;}
.ws20{word-spacing:3.825638px;}
.ws5f{word-spacing:3.885414px;}
.wsd{word-spacing:3.894418px;}
.ws16{word-spacing:3.910429px;}
.ws17{word-spacing:3.911997px;}
.ws12{word-spacing:3.917425px;}
.wsd4{word-spacing:3.945190px;}
.ws61{word-spacing:4.004965px;}
.ws69{word-spacing:4.034052px;}
.wsdd{word-spacing:4.184292px;}
.wsd6{word-spacing:4.244068px;}
.ws1b{word-spacing:4.303872px;}
.ws3d{word-spacing:4.363619px;}
.ws68{word-spacing:4.472928px;}
.wse1{word-spacing:4.602721px;}
.ws42{word-spacing:4.662497px;}
.ws25{word-spacing:5.021150px;}
.ws47{word-spacing:5.080926px;}
.ws78{word-spacing:5.086152px;}
.ws79{word-spacing:5.134248px;}
.ws48{word-spacing:5.140702px;}
.ws111{word-spacing:5.326042px;}
.ws24{word-spacing:5.499355px;}
.ws36{word-spacing:5.618906px;}
.ws1d{word-spacing:5.798233px;}
.ws44{word-spacing:5.917784px;}
.ws43{word-spacing:5.977560px;}
.ws49{word-spacing:6.097111px;}
.ws9a{word-spacing:6.156887px;}
.ws100{word-spacing:6.348211px;}
.ws45{word-spacing:6.694867px;}
.ws85{word-spacing:6.919812px;}
.ws86{word-spacing:6.991956px;}
.ws2b{word-spacing:7.890379px;}
.ws54{word-spacing:8.189257px;}
.ws9{word-spacing:8.476054px;}
.ws38{word-spacing:8.906564px;}
.wsd2{word-spacing:9.623872px;}
.ws3{word-spacing:10.418857px;}
.wsd1{word-spacing:11.357364px;}
.wsf1{word-spacing:11.459059px;}
.ws65{word-spacing:11.620476px;}
.ws27{word-spacing:11.904926px;}
.wsf7{word-spacing:13.126810px;}
.wse9{word-spacing:13.234406px;}
.wsfb{word-spacing:13.288205px;}
.ws101{word-spacing:13.386566px;}
.ws10c{word-spacing:13.388486px;}
.ws116{word-spacing:13.389120px;}
.ws110{word-spacing:13.389158px;}
.ws115{word-spacing:13.389734px;}
.wsec{word-spacing:13.390445px;}
.wsf4{word-spacing:13.395024px;}
.ws10a{word-spacing:13.395475px;}
.wsf2{word-spacing:13.395802px;}
.ws10d{word-spacing:13.449600px;}
.ws104{word-spacing:13.557197px;}
.ws103{word-spacing:13.610995px;}
.ws109{word-spacing:13.661779px;}
.ws113{word-spacing:14.041382px;}
.ws37{word-spacing:14.884124px;}
.ws106{word-spacing:16.285538px;}
.wsff{word-spacing:16.462310px;}
.ws107{word-spacing:16.618022px;}
.ws108{word-spacing:16.618579px;}
.ws105{word-spacing:16.620144px;}
.wsfa{word-spacing:16.623283px;}
.wsee{word-spacing:16.623706px;}
.wsfe{word-spacing:16.785101px;}
.wseb{word-spacing:17.054093px;}
.wsd3{word-spacing:18.590212px;}
.ws8f{word-spacing:18.948865px;}
.ws1{word-spacing:22.179541px;}
.ws53{word-spacing:133.718904px;}
.ws59{word-spacing:140.736026px;}
.ws5e{word-spacing:164.646326px;}
.ws5c{word-spacing:176.601476px;}
.ws5a{word-spacing:188.556626px;}
.ws56{word-spacing:201.410543px;}
.ws71{word-spacing:205.351200px;}
.ws6f{word-spacing:225.174600px;}
.ws75{word-spacing:238.831200px;}
.ws5b{word-spacing:253.803041px;}
.ws72{word-spacing:260.080200px;}
.ws70{word-spacing:265.474800px;}
.ws73{word-spacing:265.480200px;}
.ws76{word-spacing:265.485600px;}
.ws58{word-spacing:292.006660px;}
.ws5d{word-spacing:302.124473px;}
.wsc5{word-spacing:415.799760px;}
.wsb7{word-spacing:443.276435px;}
.wsb5{word-spacing:443.278522px;}
.wsb4{word-spacing:458.552435px;}
.wsb6{word-spacing:458.554522px;}
.ws8d{word-spacing:467.637647px;}
.ws8c{word-spacing:489.280660px;}
.ws8e{word-spacing:491.547947px;}
.ws8b{word-spacing:536.164567px;}
.ws96{word-spacing:621.237415px;}
.wsbf{word-spacing:888.206688px;}
.ws98{word-spacing:1032.598522px;}
.ws97{word-spacing:1047.880522px;}
._37{margin-left:-265.323600px;}
._41{margin-left:-112.012200px;}
._38{margin-left:-103.323600px;}
._2b{margin-left:-102.243600px;}
._22{margin-left:-95.201856px;}
._26{margin-left:-80.350389px;}
._27{margin-left:-34.533000px;}
._24{margin-left:-30.596400px;}
._2d{margin-left:-24.810437px;}
._70{margin-left:-23.805936px;}
._2c{margin-left:-22.361400px;}
._87{margin-left:-20.022782px;}
._23{margin-left:-13.678200px;}
._5{margin-left:-11.943245px;}
._6{margin-left:-7.962163px;}
._b{margin-left:-6.384038px;}
._9{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._7e{margin-left:-2.578978px;}
._2{margin-left:-1.506341px;}
._19{width:1.139544px;}
._7f{width:2.948616px;}
._18{width:4.303843px;}
._81{width:5.756314px;}
._80{width:7.214400px;}
._2e{width:9.363557px;}
._0{width:10.879128px;}
._3{width:12.969515px;}
._12{width:14.826789px;}
._63{width:15.924341px;}
._c{width:17.107772px;}
._a{width:18.470660px;}
._11{width:19.594455px;}
._85{width:20.754075px;}
._4{width:21.761856px;}
._e{width:23.085332px;}
._15{width:24.507996px;}
._d{width:25.894786px;}
._f{width:28.405361px;}
._10{width:30.425780px;}
._16{width:32.350550px;}
._7{width:33.355008px;}
._1e{width:34.921800px;}
._17{width:37.714866px;}
._62{width:38.734589px;}
._25{width:43.557685px;}
._28{width:47.305642px;}
._8{width:54.503228px;}
._40{width:57.202985px;}
._29{width:59.203420px;}
._21{width:61.408800px;}
._1c{width:65.161800px;}
._1f{width:75.961800px;}
._1d{width:77.760000px;}
._3f{width:83.160000px;}
._20{width:86.043600px;}
._86{width:88.767360px;}
._2a{width:90.363600px;}
._45{width:94.445685px;}
._44{width:100.375439px;}
._48{width:102.479546px;}
._46{width:110.083021px;}
._47{width:121.703427px;}
._1b{width:143.283600px;}
._3c{width:149.353200px;}
._39{width:151.864200px;}
._5a{width:156.055278px;}
._30{width:157.680000px;}
._3d{width:171.001800px;}
._43{width:179.128080px;}
._3a{width:184.323600px;}
._42{width:193.858488px;}
._59{width:198.216387px;}
._2f{width:201.603600px;}
._3e{width:208.445400px;}
._56{width:210.171537px;}
._58{width:212.505715px;}
._55{width:214.607627px;}
._54{width:219.831298px;}
._3b{width:222.474600px;}
._31{width:224.634600px;}
._51{width:231.786448px;}
._34{width:235.083600px;}
._32{width:238.323600px;}
._4a{width:242.397776px;}
._4d{width:243.741598px;}
._33{width:251.996400px;}
._57{width:253.401359px;}
._64{width:262.150276px;}
._35{width:264.956400px;}
._49{width:273.012401px;}
._53{width:274.968450px;}
._52{width:284.580391px;}
._4f{width:286.923600px;}
._36{width:295.563600px;}
._69{width:301.253216px;}
._4b{width:306.195302px;}
._4e{width:308.490691px;}
._67{width:321.236386px;}
._50{width:330.157798px;}
._4c{width:332.496632px;}
._71{width:343.158372px;}
._68{width:366.831823px;}
._77{width:374.363853px;}
._66{width:386.820833px;}
._74{width:389.645853px;}
._6e{width:402.529880px;}
._73{width:404.927216px;}
._5c{width:429.867019px;}
._5d{width:432.919892px;}
._5f{width:438.801826px;}
._75{width:490.161150px;}
._72{width:500.131724px;}
._5e{width:503.503097px;}
._6d{width:508.691612px;}
._61{width:515.458247px;}
._76{width:525.835318px;}
._60{width:527.365577px;}
._82{width:555.436269px;}
._83{width:560.122688px;}
._78{width:561.268129px;}
._6b{width:572.245198px;}
._7c{width:575.425280px;}
._79{width:587.955206px;}
._6c{width:591.708182px;}
._65{width:671.879430px;}
._5b{width:765.751268px;}
._7a{width:822.753423px;}
._7d{width:952.978298px;}
._7b{width:968.902558px;}
._6a{width:1059.570563px;}
._13{width:1782.014700px;}
._1a{width:2045.898036px;}
._6f{width:2058.811272px;}
._84{width:2429.600700px;}
._14{width:2453.510700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:47.880000px;}
.fse{font-size:49.829400px;}
.fsc{font-size:53.798400px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs9{font-size:63.000000px;}
.fsb{font-size:65.880000px;}
.fs4{font-size:71.731200px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.yb8{bottom:-794.849550px;}
.yd9{bottom:-715.108659px;}
.yd8{bottom:-693.328686px;}
.yd7{bottom:-672.358830px;}
.y141{bottom:-666.950406px;}
.yd6{bottom:-651.298794px;}
.y140{bottom:-645.980550px;}
.yd5{bottom:-630.328938px;}
.yd4{bottom:-609.359082px;}
.y13f{bottom:-607.370100px;}
.yd3{bottom:-588.299046px;}
.y13e{bottom:-586.400550px;}
.yd2{bottom:-567.329190px;}
.yd1{bottom:-546.359334px;}
.yd0{bottom:-525.299298px;}
.y188{bottom:-504.856500px;}
.ycf{bottom:-504.329442px;}
.yce{bottom:-483.359586px;}
.ycd{bottom:-462.299550px;}
.y1a5{bottom:-455.446500px;}
.y1a4{bottom:-434.476500px;}
.ycc{bottom:-422.249400px;}
.y1a3{bottom:-413.416500px;}
.ycb{bottom:-403.349400px;}
.y1a2{bottom:-392.446500px;}
.yca{bottom:-384.359550px;}
.y1a1{bottom:-371.476500px;}
.yc9{bottom:-365.369400px;}
.yc8{bottom:-346.469550px;}
.y1a0{bottom:-345.106500px;}
.yc7{bottom:-327.479550px;}
.yc6{bottom:-308.489550px;}
.y19f{bottom:-302.146500px;}
.yc5{bottom:-289.499550px;}
.y19e{bottom:-281.896500px;}
.yc4{bottom:-270.599550px;}
.y19d{bottom:-261.736500px;}
.yc3{bottom:-251.609550px;}
.y19c{bottom:-241.486500px;}
.yc2{bottom:-232.619550px;}
.y19b{bottom:-220.516500px;}
.yc1{bottom:-213.720000px;}
.y19a{bottom:-190.186500px;}
.yc0{bottom:-185.009550px;}
.y199{bottom:-169.126500px;}
.y198{bottom:-148.156500px;}
.ybf{bottom:-145.499154px;}
.y13d{bottom:-137.480298px;}
.ybe{bottom:-124.529298px;}
.y14d{bottom:-116.702406px;}
.y13c{bottom:-116.420262px;}
.y197{bottom:-108.736500px;}
.ybd{bottom:-103.559442px;}
.y14c{bottom:-95.732550px;}
.y13b{bottom:-95.450406px;}
.y196{bottom:-87.676500px;}
.ybc{bottom:-82.499406px;}
.y13a{bottom:-74.480550px;}
.y195{bottom:-66.706500px;}
.ybb{bottom:-61.529550px;}
.y14b{bottom:-57.122100px;}
.y14a{bottom:-36.152550px;}
.y139{bottom:-35.870550px;}
.y194{bottom:-28.186500px;}
.yba{bottom:-22.379550px;}
.y0{bottom:0.000000px;}
.y193{bottom:1.063500px;}
.yb9{bottom:3.180324px;}
.y18c{bottom:4.500000px;}
.y1ba{bottom:5.400000px;}
.y1bf{bottom:15.840000px;}
.ye7{bottom:24.330450px;}
.y1af{bottom:35.100000px;}
.ye0{bottom:40.260864px;}
.y1a7{bottom:40.620000px;}
.y1be{bottom:42.750000px;}
.y40{bottom:45.921000px;}
.y1ab{bottom:53.190000px;}
.ydf{bottom:64.830405px;}
.y1bd{bottom:69.660000px;}
.y1a8{bottom:72.090000px;}
.ye1{bottom:87.600855px;}
.y1b0{bottom:91.710000px;}
.y1bc{bottom:96.570000px;}
.y3f{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y184{bottom:101.191500px;}
.yde{bottom:102.270135px;}
.y1de{bottom:102.616500px;}
.y249{bottom:105.961500px;}
.y9d{bottom:113.313000px;}
.yda{bottom:113.700450px;}
.y1e8{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.y3e{bottom:120.610500px;}
.y183{bottom:122.082000px;}
.y1dd{bottom:123.508500px;}
.y248{bottom:125.112000px;}
.y1aa{bottom:127.020000px;}
.ydd{bottom:130.260504px;}
.ye5{bottom:132.781035px;}
.y9c{bottom:134.205000px;}
.ydb{bottom:134.940846px;}
.ye2{bottom:135.031026px;}
.y217{bottom:135.379500px;}
.y14{bottom:136.035000px;}
.y1e7{bottom:137.298000px;}
.y3d{bottom:141.502500px;}
.y247{bottom:144.262500px;}
.y1dc{bottom:144.400500px;}
.y1b4{bottom:146.070000px;}
.y1b1{bottom:148.320000px;}
.y70{bottom:153.126000px;}
.y1a9{bottom:153.840000px;}
.y13{bottom:153.924000px;}
.y216{bottom:154.530000px;}
.y9b{bottom:155.095500px;}
.y1e6{bottom:158.190000px;}
.y1b8{bottom:159.600000px;}
.y3c{bottom:162.394500px;}
.y246{bottom:163.413000px;}
.y1db{bottom:165.291000px;}
.y1ae{bottom:166.410000px;}
.y106{bottom:166.434000px;}
.y182{bottom:168.261000px;}
.y12{bottom:171.811500px;}
.y215{bottom:173.680500px;}
.y6f{bottom:174.016500px;}
.y9a{bottom:175.987500px;}
.y1e5{bottom:179.082000px;}
.y181{bottom:180.498000px;}
.ye3{bottom:182.461197px;}
.y245{bottom:182.563500px;}
.y3b{bottom:183.285000px;}
.y1b7{bottom:185.340000px;}
.y1da{bottom:186.183000px;}
.y105{bottom:187.326000px;}
.y11{bottom:189.699000px;}
.y180{bottom:192.733500px;}
.y214{bottom:192.831000px;}
.y6e{bottom:194.908500px;}
.y99{bottom:196.879500px;}
.y1e4{bottom:199.972500px;}
.y244{bottom:201.714000px;}
.y3a{bottom:204.177000px;}
.y17f{bottom:204.688500px;}
.y1b2{bottom:204.960000px;}
.ydc{bottom:205.590864px;}
.y1d9{bottom:207.075000px;}
.y10{bottom:207.588000px;}
.y104{bottom:208.216500px;}
.y1ad{bottom:209.430000px;}
.y1b6{bottom:211.110000px;}
.y213{bottom:211.981500px;}
.y6d{bottom:215.800500px;}
.y98{bottom:217.771500px;}
.y1e3{bottom:220.864500px;}
.y17e{bottom:224.127000px;}
.y39{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.y1d8{bottom:227.965500px;}
.y103{bottom:229.108500px;}
.ye4{bottom:229.891368px;}
.y212{bottom:231.132000px;}
.y1ac{bottom:235.590000px;}
.y6c{bottom:236.691000px;}
.y1b5{bottom:236.880000px;}
.y97{bottom:238.662000px;}
.y243{bottom:240.015000px;}
.y1e2{bottom:241.756500px;}
.y38{bottom:245.961000px;}
.y1d7{bottom:248.857500px;}
.y102{bottom:250.000500px;}
.y211{bottom:250.282500px;}
.y150{bottom:251.128500px;}
.ye{bottom:252.330000px;}
.y17d{bottom:252.877500px;}
.ye6{bottom:257.610450px;}
.y242{bottom:259.165500px;}
.y96{bottom:259.554000px;}
.y1b3{bottom:261.570000px;}
.y6b{bottom:262.066500px;}
.y1e1{bottom:262.647000px;}
.y37{bottom:266.851500px;}
.y210{bottom:269.433000px;}
.y1d6{bottom:269.749500px;}
.yd{bottom:270.217500px;}
.y101{bottom:270.891000px;}
.y14f{bottom:272.020500px;}
.y17c{bottom:272.110500px;}
.y241{bottom:278.316000px;}
.y95{bottom:280.446000px;}
.y1e0{bottom:283.539000px;}
.y6a{bottom:286.498500px;}
.y36{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.y20f{bottom:288.583500px;}
.y1d5{bottom:290.640000px;}
.y100{bottom:291.783000px;}
.y240{bottom:297.466500px;}
.y94{bottom:301.336500px;}
.y1df{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y14e{bottom:307.648500px;}
.y20e{bottom:307.734000px;}
.y35{bottom:308.635500px;}
.y17b{bottom:309.214500px;}
.y1d4{bottom:311.532000px;}
.yff{bottom:312.675000px;}
.y136{bottom:314.542500px;}
.y23f{bottom:316.617000px;}
.yb4{bottom:321.273000px;}
.y93{bottom:322.228500px;}
.ya{bottom:323.881500px;}
.y69{bottom:325.323000px;}
.y20d{bottom:326.884500px;}
.y34{bottom:329.526000px;}
.y143{bottom:330.078000px;}
.y17a{bottom:330.106500px;}
.y1d3{bottom:332.424000px;}
.yfe{bottom:333.567000px;}
.y135{bottom:335.434500px;}
.y23e{bottom:335.767500px;}
.yb7{bottom:341.400585px;}
.y9{bottom:341.769000px;}
.yb3{bottom:342.163500px;}
.y92{bottom:343.120500px;}
.y20c{bottom:346.036500px;}
.y68{bottom:346.213500px;}
.y33{bottom:350.418000px;}
.y179{bottom:350.998500px;}
.yb6{bottom:351.030450px;}
.y1d2{bottom:353.316000px;}
.yfd{bottom:354.457500px;}
.y23d{bottom:354.918000px;}
.y134{bottom:356.326500px;}
.y8{bottom:359.658000px;}
.yb2{bottom:363.055500px;}
.y20b{bottom:365.187000px;}
.y67{bottom:367.105500px;}
.y91{bottom:368.494500px;}
.y32{bottom:371.310000px;}
.y23c{bottom:374.070000px;}
.y1d1{bottom:374.206500px;}
.yfc{bottom:375.349500px;}
.y133{bottom:377.217000px;}
.y7{bottom:377.545500px;}
.y192{bottom:380.353500px;}
.yb1{bottom:383.947500px;}
.y20a{bottom:384.337500px;}
.y66{bottom:387.997500px;}
.y31{bottom:392.200500px;}
.y23b{bottom:393.220500px;}
.y90{bottom:393.870000px;}
.y1d0{bottom:395.098500px;}
.y6{bottom:395.433000px;}
.y178{bottom:397.177500px;}
.y132{bottom:398.109000px;}
.y191{bottom:401.323500px;}
.y209{bottom:403.488000px;}
.y65{bottom:408.888000px;}
.y177{bottom:409.132500px;}
.yb0{bottom:409.321500px;}
.y23a{bottom:412.371000px;}
.y149{bottom:412.767702px;}
.y1cf{bottom:415.990500px;}
.y30{bottom:417.576000px;}
.y131{bottom:419.001000px;}
.y5{bottom:419.299500px;}
.y176{bottom:421.087500px;}
.y208{bottom:422.638500px;}
.yfb{bottom:424.518000px;}
.y8f{bottom:429.211500px;}
.y64{bottom:429.780000px;}
.y239{bottom:431.521500px;}
.y175{bottom:433.042500px;}
.y148{bottom:433.827738px;}
.y138{bottom:435.369450px;}
.y1ce{bottom:436.881000px;}
.y4{bottom:437.187000px;}
.y130{bottom:439.893000px;}
.y207{bottom:441.789000px;}
.yfa{bottom:443.955000px;}
.y174{bottom:444.997500px;}
.yaf{bottom:448.146000px;}
.y8e{bottom:450.103500px;}
.y63{bottom:450.672000px;}
.y147{bottom:454.797594px;}
.y3{bottom:455.074500px;}
.y173{bottom:456.952500px;}
.y1cd{bottom:457.773000px;}
.y12f{bottom:460.783500px;}
.y206{bottom:460.939500px;}
.yf9{bottom:463.393500px;}
.y172{bottom:468.907500px;}
.yae{bottom:469.038000px;}
.y238{bottom:469.822500px;}
.y8c{bottom:470.995500px;}
.y62{bottom:471.562500px;}
.y2{bottom:472.963500px;}
.y146{bottom:475.767450px;}
.y8d{bottom:476.419500px;}
.y205{bottom:480.090000px;}
.y171{bottom:480.862500px;}
.yf8{bottom:482.832000px;}
.y1cc{bottom:483.147000px;}
.y237{bottom:488.973000px;}
.yad{bottom:489.928500px;}
.y8b{bottom:491.886000px;}
.y61{bottom:492.454500px;}
.y2f{bottom:496.788000px;}
.y1{bottom:496.828500px;}
.y204{bottom:499.240500px;}
.y170{bottom:500.020500px;}
.yf7{bottom:502.270500px;}
.y12e{bottom:506.962500px;}
.y236{bottom:508.123500px;}
.yac{bottom:510.820500px;}
.y8a{bottom:512.778000px;}
.y60{bottom:513.346500px;}
.y145{bottom:514.377450px;}
.y203{bottom:518.391000px;}
.y12d{bottom:518.917500px;}
.yf6{bottom:521.709000px;}
.y235{bottom:527.274000px;}
.y16f{bottom:528.771000px;}
.y1cb{bottom:529.327500px;}
.y12c{bottom:530.874000px;}
.yab{bottom:531.712500px;}
.y89{bottom:533.670000px;}
.y5f{bottom:534.237000px;}
.y2e{bottom:535.612500px;}
.y202{bottom:537.541500px;}
.yf5{bottom:541.147500px;}
.y1ca{bottom:541.563000px;}
.y12b{bottom:542.829000px;}
.y234{bottom:546.424500px;}
.y16e{bottom:548.004000px;}
.yaa{bottom:552.603000px;}
.y1c9{bottom:553.798500px;}
.y18a{bottom:553.813500px;}
.y88{bottom:554.560500px;}
.y12a{bottom:554.784000px;}
.y5e{bottom:555.129000px;}
.y2d{bottom:556.503000px;}
.y201{bottom:556.692000px;}
.yf4{bottom:560.586000px;}
.y233{bottom:565.575000px;}
.y1c8{bottom:565.753500px;}
.y129{bottom:566.739000px;}
.ya9{bottom:573.495000px;}
.y189{bottom:574.873500px;}
.y87{bottom:575.452500px;}
.y200{bottom:575.842500px;}
.y5d{bottom:576.021000px;}
.y2c{bottom:577.395000px;}
.y128{bottom:578.694000px;}
.yf3{bottom:580.024500px;}
.y232{bottom:584.725500px;}
.y16d{bottom:585.108000px;}
.y1c7{bottom:585.192000px;}
.y127{bottom:590.649000px;}
.ya8{bottom:594.387000px;}
.y1ff{bottom:594.993000px;}
.y86{bottom:596.344500px;}
.y5c{bottom:596.913000px;}
.y2b{bottom:598.287000px;}
.yf2{bottom:599.182500px;}
.y126{bottom:602.604000px;}
.y231{bottom:603.876000px;}
.y16c{bottom:606.000000px;}
.y1c6{bottom:613.942500px;}
.y1fe{bottom:614.143500px;}
.y125{bottom:614.559000px;}
.ya7{bottom:615.277500px;}
.y85{bottom:617.235000px;}
.y5b{bottom:617.803500px;}
.yf1{bottom:618.621000px;}
.yf0{bottom:618.754500px;}
.y2a{bottom:619.177500px;}
.y230{bottom:623.026500px;}
.y124{bottom:626.514000px;}
.y16b{bottom:626.890500px;}
.y187{bottom:631.483500px;}
.y1c5{bottom:633.175500px;}
.y1fd{bottom:633.294000px;}
.ya6{bottom:636.169500px;}
.yef{bottom:638.047500px;}
.y84{bottom:638.127000px;}
.y123{bottom:638.470500px;}
.y5a{bottom:638.695500px;}
.y29{bottom:640.069500px;}
.y186{bottom:641.113500px;}
.y22f{bottom:642.177000px;}
.y16a{bottom:647.782500px;}
.y122{bottom:650.425500px;}
.y1c4{bottom:652.408500px;}
.y1fc{bottom:652.444500px;}
.y83{bottom:659.019000px;}
.y59{bottom:659.587500px;}
.y28{bottom:660.961500px;}
.y22e{bottom:661.327500px;}
.ya5{bottom:661.545000px;}
.y121{bottom:662.380500px;}
.y169{bottom:668.674500px;}
.yee{bottom:669.517500px;}
.y120{bottom:674.335500px;}
.y1fb{bottom:676.078500px;}
.y82{bottom:679.911000px;}
.y58{bottom:680.478000px;}
.y27{bottom:681.852000px;}
.y11f{bottom:686.290500px;}
.y1c3{bottom:689.512500px;}
.ya4{bottom:696.886500px;}
.y11e{bottom:698.245500px;}
.y22d{bottom:699.628500px;}
.y81{bottom:700.801500px;}
.y57{bottom:701.370000px;}
.yed{bottom:702.729000px;}
.y26{bottom:702.744000px;}
.y11d{bottom:710.200500px;}
.y1c2{bottom:710.404500px;}
.y168{bottom:714.853500px;}
.y1fa{bottom:714.903000px;}
.ya3{bottom:717.778500px;}
.y22c{bottom:718.779000px;}
.y80{bottom:721.693500px;}
.y56{bottom:722.262000px;}
.yec{bottom:723.619500px;}
.y25{bottom:723.636000px;}
.y167{bottom:726.808500px;}
.y11c{bottom:729.358500px;}
.y1c1{bottom:731.295000px;}
.y22b{bottom:737.929500px;}
.ya2{bottom:738.670500px;}
.y166{bottom:738.763500px;}
.y7f{bottom:742.585500px;}
.y55{bottom:743.152500px;}
.y1f9{bottom:743.368500px;}
.yeb{bottom:744.511500px;}
.y24{bottom:744.526500px;}
.y165{bottom:750.718500px;}
.y142{bottom:751.042500px;}
.y22a{bottom:757.081500px;}
.y11b{bottom:758.109000px;}
.ya1{bottom:759.561000px;}
.y164{bottom:762.673500px;}
.y7e{bottom:763.476000px;}
.y54{bottom:764.044500px;}
.yea{bottom:765.403500px;}
.y23{bottom:765.418500px;}
.y1c0{bottom:766.923000px;}
.y1f8{bottom:771.834000px;}
.y137{bottom:773.472000px;}
.y163{bottom:774.628500px;}
.y229{bottom:776.232000px;}
.y11a{bottom:777.342000px;}
.ya0{bottom:780.453000px;}
.y53{bottom:784.936500px;}
.ye9{bottom:786.294000px;}
.y22{bottom:786.310500px;}
.y162{bottom:786.585000px;}
.y7d{bottom:788.851500px;}
.y24c{bottom:790.651500px;}
.y1f7{bottom:791.332500px;}
.y185{bottom:792.342000px;}
.y228{bottom:795.382500px;}
.y1a6{bottom:795.445500px;}
.y161{bottom:798.540000px;}
.y9f{bottom:801.345000px;}
.y1b9{bottom:803.845500px;}
.y52{bottom:805.827000px;}
.y21{bottom:807.202500px;}
.y24b{bottom:809.802000px;}
.y7c{bottom:814.225500px;}
.y119{bottom:814.446000px;}
.y227{bottom:814.533000px;}
.y160{bottom:817.696500px;}
.y1f6{bottom:819.796500px;}
.ye8{bottom:821.922000px;}
.y9e{bottom:822.235500px;}
.y51{bottom:826.719000px;}
.y20{bottom:828.093000px;}
.y24a{bottom:828.954000px;}
.y226{bottom:833.683500px;}
.y118{bottom:835.336500px;}
.y1f5{bottom:839.296500px;}
.y15f{bottom:846.447000px;}
.yb5{bottom:847.341000px;}
.y50{bottom:847.611000px;}
.y1f{bottom:848.985000px;}
.y7b{bottom:849.568500px;}
.y225{bottom:852.834000px;}
.y1f4{bottom:858.795000px;}
.y15e{bottom:865.680000px;}
.y4f{bottom:868.503000px;}
.y7a{bottom:870.460500px;}
.y224{bottom:871.984500px;}
.y117{bottom:881.517000px;}
.y1f3{bottom:887.259000px;}
.y1e{bottom:888.834000px;}
.y4e{bottom:889.393500px;}
.y223{bottom:891.135000px;}
.y79{bottom:891.351000px;}
.y116{bottom:900.673500px;}
.y15d{bottom:902.784000px;}
.y1d{bottom:904.974000px;}
.y4d{bottom:910.285500px;}
.y113{bottom:911.485500px;}
.y78{bottom:912.243000px;}
.y1f2{bottom:915.724500px;}
.y115{bottom:919.831500px;}
.y1c{bottom:921.114000px;}
.y15c{bottom:923.676000px;}
.y222{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.y77{bottom:933.135000px;}
.y1f1{bottom:935.223000px;}
.y1bb{bottom:937.255500px;}
.y114{bottom:939.270000px;}
.y15b{bottom:944.568000px;}
.y221{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.y76{bottom:954.025500px;}
.y1f0{bottom:954.723000px;}
.y112{bottom:958.708500px;}
.y220{bottom:967.737000px;}
.y1b{bottom:969.958500px;}
.y4a{bottom:972.960000px;}
.y1ef{bottom:974.221500px;}
.y75{bottom:974.917500px;}
.y10f{bottom:975.498000px;}
.y111{bottom:977.866500px;}
.y144{bottom:985.617450px;}
.y21f{bottom:986.887500px;}
.y15a{bottom:990.747000px;}
.y1ee{bottom:993.720000px;}
.y49{bottom:993.852000px;}
.y74{bottom:995.809500px;}
.y110{bottom:997.303500px;}
.y159{bottom:1002.702000px;}
.y21e{bottom:1006.038000px;}
.y1a{bottom:1008.783000px;}
.y158{bottom:1014.657000px;}
.y48{bottom:1014.742500px;}
.y73{bottom:1016.700000px;}
.y10e{bottom:1016.742000px;}
.y21d{bottom:1025.188500px;}
.y157{bottom:1026.612000px;}
.y1ed{bottom:1031.151000px;}
.y47{bottom:1035.634500px;}
.y10d{bottom:1035.900000px;}
.y72{bottom:1037.592000px;}
.y156{bottom:1038.567000px;}
.y19{bottom:1040.121000px;}
.y21c{bottom:1044.339000px;}
.y10a{bottom:1046.712000px;}
.y155{bottom:1050.522000px;}
.y1ec{bottom:1052.043000px;}
.y10c{bottom:1055.058000px;}
.y46{bottom:1056.526500px;}
.y154{bottom:1062.477000px;}
.y71{bottom:1062.967500px;}
.y21b{bottom:1063.489500px;}
.y18{bottom:1071.457500px;}
.y1eb{bottom:1072.935000px;}
.y153{bottom:1074.432000px;}
.y10b{bottom:1074.496500px;}
.y45{bottom:1077.417000px;}
.y21a{bottom:1082.640000px;}
.y152{bottom:1093.590000px;}
.y1ea{bottom:1093.825500px;}
.y109{bottom:1093.935000px;}
.y44{bottom:1098.309000px;}
.y219{bottom:1101.790500px;}
.y17{bottom:1102.795500px;}
.y108{bottom:1113.091500px;}
.y1e9{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y218{bottom:1120.941000px;}
.y151{bottom:1122.340500px;}
.y42{bottom:1140.091500px;}
.y107{bottom:1141.573500px;}
.y41{bottom:1200.196500px;}
.y190{bottom:1229.665500px;}
.y18f{bottom:1249.915500px;}
.y18e{bottom:1270.165500px;}
.y18d{bottom:1290.355500px;}
.y18b{bottom:1311.415500px;}
.h28{height:-286.396500px;}
.h27{height:-266.236500px;}
.h26{height:-245.986500px;}
.h25{height:-225.736500px;}
.h24{height:-204.766500px;}
.h1e{height:-156.378000px;}
.h20{height:-135.318000px;}
.h21{height:-115.128000px;}
.h22{height:-94.878000px;}
.h23{height:-74.628000px;}
.h2d{height:23.310000px;}
.h18{height:34.430832px;}
.h9{height:36.463116px;}
.h2{height:37.993262px;}
.h11{height:39.761719px;}
.he{height:40.070215px;}
.h13{height:40.892168px;}
.ha{height:41.250077px;}
.h17{height:41.482876px;}
.h5{height:43.038432px;}
.h6{height:43.421105px;}
.h3{height:43.815515px;}
.h19{height:43.979105px;}
.h1a{height:43.985105px;}
.h12{height:44.268047px;}
.hc{height:44.536816px;}
.h15{height:44.809980px;}
.h2c{height:45.412910px;}
.h1f{height:46.645840px;}
.h16{height:48.848947px;}
.h10{height:50.229492px;}
.h8{height:51.646464px;}
.h29{height:53.015625px;}
.h14{height:54.000000px;}
.h7{height:54.276245px;}
.hd{height:55.922168px;}
.hf{height:58.601074px;}
.h2b{height:59.797090px;}
.h4{height:77.469696px;}
.h2e{height:115.650000px;}
.hb{height:307.696500px;}
.h2a{height:354.780000px;}
.h1d{height:362.695500px;}
.h1b{height:381.565500px;}
.h1c{height:386.802000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:109.890000px;}
.w8{width:112.138500px;}
.w6{width:161.400000px;}
.w7{width:245.460000px;}
.wa{width:401.010000px;}
.w3{width:476.377500px;}
.w4{width:485.101500px;}
.w9{width:637.380000px;}
.w5{width:646.172700px;}
.w2{width:647.964900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x69{left:-207.163500px;}
.x6c{left:-205.419000px;}
.x70{left:-68.425800px;}
.x43{left:-66.984600px;}
.x4e{left:-62.664600px;}
.x4d{left:-48.714600px;}
.x4c{left:-46.284600px;}
.x4b{left:-32.064600px;}
.x48{left:-30.984600px;}
.x49{left:-18.564600px;}
.x4a{left:-16.674600px;}
.x6a{left:-11.593500px;}
.x6d{left:-9.849000px;}
.x0{left:0.000000px;}
.x84{left:10.800000px;}
.x6b{left:20.266500px;}
.x6e{left:22.011000px;}
.x7b{left:27.990000px;}
.x82{left:30.420000px;}
.x78{left:31.770000px;}
.x55{left:39.308784px;}
.x81{left:51.120000px;}
.x1{left:53.574000px;}
.x80{left:58.740000px;}
.x54{left:60.098280px;}
.x62{left:65.760000px;}
.x53{left:67.658370px;}
.x61{left:77.410500px;}
.x60{left:79.573500px;}
.x72{left:80.640000px;}
.xa3{left:85.174500px;}
.x76{left:86.220000px;}
.x74{left:88.920000px;}
.x5f{left:93.184500px;}
.x5c{left:94.201500px;}
.x4f{left:103.745400px;}
.x57{left:106.265400px;}
.x77{left:117.720000px;}
.x42{left:122.262600px;}
.x71{left:127.174200px;}
.x45{left:128.585400px;}
.x7d{left:141.480000px;}
.x7c{left:145.350000px;}
.x7e{left:147.240000px;}
.x79{left:159.034200px;}
.x46{left:160.445400px;}
.x50{left:215.526516px;}
.x83{left:226.482000px;}
.x5{left:247.348500px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x67{left:258.556500px;}
.x51{left:271.417074px;}
.x7f{left:275.520000px;}
.x4{left:281.479500px;}
.x29{left:283.645500px;}
.x47{left:284.646750px;}
.x58{left:288.055500px;}
.x64{left:290.481000px;}
.x28{left:296.427000px;}
.x94{left:306.253500px;}
.x91{left:307.288500px;}
.x56{left:313.985400px;}
.x95{left:321.196500px;}
.x92{left:322.233000px;}
.x10{left:323.518500px;}
.x35{left:328.716000px;}
.x11{left:330.990000px;}
.x3b{left:336.394500px;}
.x12{left:338.313000px;}
.x36{left:343.660500px;}
.x16{left:347.139000px;}
.x3c{left:351.337500px;}
.x13{left:353.257500px;}
.x17{left:354.610500px;}
.x32{left:356.748000px;}
.x18{left:358.396500px;}
.xe{left:359.974500px;}
.xf{left:367.446000px;}
.x19{left:373.339500px;}
.x1a{left:377.124000px;}
.x1b{left:392.068500px;}
.x5b{left:409.837500px;}
.x73{left:411.732000px;}
.x86{left:433.219500px;}
.x65{left:436.699500px;}
.x30{left:441.994500px;}
.x52{left:448.626786px;}
.x26{left:454.968000px;}
.x31{left:456.939000px;}
.x68{left:463.933500px;}
.x14{left:467.467500px;}
.x27{left:469.911000px;}
.x15{left:482.412000px;}
.x3d{left:484.762500px;}
.x3a{left:488.512500px;}
.x1e{left:490.201500px;}
.x63{left:497.262000px;}
.x25{left:503.200500px;}
.x1f{left:505.144500px;}
.xc{left:518.298000px;}
.xd{left:525.769500px;}
.x87{left:543.229500px;}
.x2a{left:550.150500px;}
.x88{left:558.172500px;}
.x2e{left:563.038500px;}
.x2b{left:565.093500px;}
.x98{left:566.283000px;}
.x2c{left:568.905000px;}
.x99{left:570.093000px;}
.x9c{left:575.973000px;}
.x2f{left:577.983000px;}
.x38{left:580.980000px;}
.x2d{left:583.849500px;}
.x5d{left:585.816000px;}
.x96{left:589.291500px;}
.x66{left:591.681000px;}
.x9d{left:594.577500px;}
.x39{left:595.923000px;}
.x21{left:603.015000px;}
.x97{left:604.236000px;}
.x34{left:607.732500px;}
.x9e{left:609.522000px;}
.x9f{left:613.183500px;}
.x22{left:617.959500px;}
.x23{left:621.769500px;}
.xa0{left:628.126500px;}
.x85{left:633.522000px;}
.xa1{left:635.449500px;}
.x24{left:636.714000px;}
.x7a{left:643.654200px;}
.x44{left:645.006039px;}
.xa2{left:650.394000px;}
.x5e{left:655.443000px;}
.x75{left:657.192000px;}
.x93{left:661.735500px;}
.x8f{left:677.238000px;}
.x33{left:683.662500px;}
.x37{left:689.019000px;}
.x6{left:691.708500px;}
.x90{left:695.992500px;}
.x7{left:699.180000px;}
.x8{left:702.991500px;}
.x9{left:710.463000px;}
.x3e{left:737.413500px;}
.x89{left:748.989000px;}
.x3f{left:752.356500px;}
.x9a{left:758.806500px;}
.x8a{left:763.932000px;}
.x40{left:770.646000px;}
.x9b{left:773.749500px;}
.x6f{left:777.261000px;}
.x8d{left:780.835500px;}
.x41{left:785.589000px;}
.x1c{left:790.413000px;}
.x8e{left:795.780000px;}
.x8b{left:799.441500px;}
.x59{left:802.525500px;}
.x1d{left:805.357500px;}
.x8c{left:814.384500px;}
.x20{left:817.029000px;}
.x5a{left:818.544000px;}
.xa{left:825.169500px;}
.xb{left:832.642500px;}
@media print{
.v2{vertical-align:-33.918368pt;}
.v4{vertical-align:-24.533333pt;}
.v3{vertical-align:-16.961856pt;}
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.ls4b{letter-spacing:-0.331733pt;}
.ls20{letter-spacing:-0.325984pt;}
.ls41{letter-spacing:-0.302400pt;}
.ls1e{letter-spacing:-0.240480pt;}
.ls29{letter-spacing:-0.229792pt;}
.ls4c{letter-spacing:-0.160000pt;}
.ls44{letter-spacing:-0.144288pt;}
.ls4e{letter-spacing:-0.112000pt;}
.ls46{letter-spacing:-0.106880pt;}
.ls24{letter-spacing:-0.096192pt;}
.ls26{letter-spacing:-0.090848pt;}
.ls28{letter-spacing:-0.080160pt;}
.ls2c{letter-spacing:-0.076128pt;}
.ls1b{letter-spacing:-0.058784pt;}
.ls27{letter-spacing:-0.053440pt;}
.ls43{letter-spacing:-0.048096pt;}
.ls1c{letter-spacing:-0.042752pt;}
.ls45{letter-spacing:-0.032064pt;}
.ls21{letter-spacing:-0.026720pt;}
.ls40{letter-spacing:-0.024000pt;}
.ls42{letter-spacing:-0.016032pt;}
.ls1d{letter-spacing:-0.005344pt;}
.ls1f{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.000711pt;}
.ls58{letter-spacing:0.002525pt;}
.ls52{letter-spacing:0.003635pt;}
.ls8{letter-spacing:0.004256pt;}
.ls55{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.004800pt;}
.ls33{letter-spacing:0.008512pt;}
.ls17{letter-spacing:0.010688pt;}
.lsf{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.016032pt;}
.lsc{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.024000pt;}
.ls14{letter-spacing:0.026720pt;}
.ls37{letter-spacing:0.028800pt;}
.ls19{letter-spacing:0.032064pt;}
.ls38{letter-spacing:0.033600pt;}
.ls12{letter-spacing:0.037408pt;}
.lsa{letter-spacing:0.038304pt;}
.ls16{letter-spacing:0.042752pt;}
.ls36{letter-spacing:0.046816pt;}
.ls15{letter-spacing:0.048096pt;}
.ls3d{letter-spacing:0.052800pt;}
.ls13{letter-spacing:0.053440pt;}
.lse{letter-spacing:0.058784pt;}
.ls22{letter-spacing:0.064128pt;}
.ls49{letter-spacing:0.080000pt;}
.ls3b{letter-spacing:0.085504pt;}
.ls39{letter-spacing:0.091200pt;}
.ls23{letter-spacing:0.096192pt;}
.ls4f{letter-spacing:0.106133pt;}
.ls3c{letter-spacing:0.106880pt;}
.ls2b{letter-spacing:0.108800pt;}
.ls2a{letter-spacing:0.112224pt;}
.ls3e{letter-spacing:0.120000pt;}
.ls25{letter-spacing:0.122912pt;}
.ls4d{letter-spacing:0.124267pt;}
.lsb{letter-spacing:0.148960pt;}
.ls48{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161728pt;}
.ls34{letter-spacing:0.170240pt;}
.ls3a{letter-spacing:0.171008pt;}
.ls30{letter-spacing:0.514393pt;}
.ls0{letter-spacing:7.437600pt;}
.ls35{letter-spacing:10.486784pt;}
.ls2f{letter-spacing:10.623733pt;}
.ls6{letter-spacing:10.626533pt;}
.ls2e{letter-spacing:10.629067pt;}
.ls59{letter-spacing:11.725846pt;}
.ls57{letter-spacing:11.832555pt;}
.ls56{letter-spacing:11.860347pt;}
.ls2d{letter-spacing:11.950933pt;}
.ls53{letter-spacing:11.954133pt;}
.ls47{letter-spacing:11.956267pt;}
.ls4a{letter-spacing:11.957709pt;}
.ls54{letter-spacing:11.959467pt;}
.ls5b{letter-spacing:12.766369pt;}
.ls4{letter-spacing:13.060363pt;}
.ls2{letter-spacing:13.129528pt;}
.ls3{letter-spacing:13.134819pt;}
.ls51{letter-spacing:13.236127pt;}
.ls5{letter-spacing:13.400938pt;}
.ls32{letter-spacing:13.799080pt;}
.ls31{letter-spacing:16.345485pt;}
.ls3f{letter-spacing:21.297024pt;}
.ls1{letter-spacing:25.292137pt;}
.ls50{letter-spacing:29.799080pt;}
.ls1a{letter-spacing:171.627904pt;}
.ls18{letter-spacing:754.632704pt;}
.wsc4{word-spacing:-48.000000pt;}
.ws51{word-spacing:-14.000000pt;}
.wsc3{word-spacing:-13.484267pt;}
.wsc1{word-spacing:-13.360000pt;}
.wsc2{word-spacing:-13.028267pt;}
.ws9d{word-spacing:-12.120000pt;}
.wsc6{word-spacing:-12.077440pt;}
.wsed{word-spacing:-11.955200pt;}
.ws9c{word-spacing:-10.810240pt;}
.wsa0{word-spacing:-10.805984pt;}
.ws4f{word-spacing:-10.801728pt;}
.wsc0{word-spacing:-10.800000pt;}
.ws50{word-spacing:-10.640000pt;}
.ws28{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.wsd7{word-spacing:-2.709827pt;}
.ws7d{word-spacing:-2.506336pt;}
.ws7e{word-spacing:-2.452896pt;}
.ws3a{word-spacing:-2.284756pt;}
.wsdb{word-spacing:-2.125355pt;}
.ws39{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.822486pt;}
.wse5{word-spacing:-1.817190pt;}
.ws60{word-spacing:-1.806551pt;}
.ws87{word-spacing:-1.758176pt;}
.ws88{word-spacing:-1.747488pt;}
.wsf0{word-spacing:-1.701593pt;}
.wscf{word-spacing:-1.647150pt;}
.ws9e{word-spacing:-1.578086pt;}
.wsdf{word-spacing:-1.487748pt;}
.wsaf{word-spacing:-1.255840pt;}
.wsa5{word-spacing:-1.181024pt;}
.wscd{word-spacing:-1.168945pt;}
.wsa6{word-spacing:-1.148960pt;}
.wsae{word-spacing:-1.100864pt;}
.ws15{word-spacing:-1.062677pt;}
.wsce{word-spacing:-0.956410pt;}
.ws2f{word-spacing:-0.743874pt;}
.wse{word-spacing:-0.637606pt;}
.ws7a{word-spacing:-0.614560pt;}
.ws4d{word-spacing:-0.584473pt;}
.ws57{word-spacing:-0.552594pt;}
.ws4c{word-spacing:-0.531339pt;}
.ws2d{word-spacing:-0.425071pt;}
.wsb9{word-spacing:-0.371937pt;}
.ws33{word-spacing:-0.318803pt;}
.wse8{word-spacing:-0.286925pt;}
.ws7b{word-spacing:-0.277888pt;}
.ws26{word-spacing:-0.265669pt;}
.ws63{word-spacing:-0.242592pt;}
.wsfd{word-spacing:-0.239104pt;}
.ws6c{word-spacing:-0.235136pt;}
.ws13{word-spacing:-0.212535pt;}
.wsf6{word-spacing:-0.204108pt;}
.ws7c{word-spacing:-0.197728pt;}
.wsba{word-spacing:-0.191283pt;}
.ws67{word-spacing:-0.177600pt;}
.ws11{word-spacing:-0.159402pt;}
.ws90{word-spacing:-0.143462pt;}
.ws9f{word-spacing:-0.123424pt;}
.ws64{word-spacing:-0.119168pt;}
.ws2e{word-spacing:-0.106268pt;}
.wsc7{word-spacing:-0.095642pt;}
.ws62{word-spacing:-0.085120pt;}
.ws52{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.053134pt;}
.wsb1{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.042507pt;}
.ws8a{word-spacing:-0.040992pt;}
.ws5{word-spacing:-0.037194pt;}
.wsf3{word-spacing:-0.019174pt;}
.ws93{word-spacing:-0.018817pt;}
.ws92{word-spacing:-0.014891pt;}
.wsb3{word-spacing:-0.014764pt;}
.ws102{word-spacing:-0.006093pt;}
.wsc9{word-spacing:-0.003867pt;}
.wsbe{word-spacing:-0.001003pt;}
.wsb2{word-spacing:-0.000498pt;}
.ws7{word-spacing:0.000000pt;}
.ws95{word-spacing:0.001467pt;}
.ws91{word-spacing:0.003099pt;}
.ws6b{word-spacing:0.021376pt;}
.ws84{word-spacing:0.032064pt;}
.wsb8{word-spacing:0.047821pt;}
.wsb0{word-spacing:0.048096pt;}
.ws22{word-spacing:0.053134pt;}
.ws77{word-spacing:0.064128pt;}
.ws7f{word-spacing:0.085504pt;}
.wsbd{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.wsad{word-spacing:0.110400pt;}
.wsa3{word-spacing:0.129600pt;}
.wsa1{word-spacing:0.134400pt;}
.ws74{word-spacing:0.139200pt;}
.wsbc{word-spacing:0.143462pt;}
.ws6e{word-spacing:0.144000pt;}
.ws66{word-spacing:0.158400pt;}
.ws18{word-spacing:0.159402pt;}
.ws6d{word-spacing:0.163200pt;}
.ws89{word-spacing:0.171008pt;}
.wsa2{word-spacing:0.187200pt;}
.wsc8{word-spacing:0.191283pt;}
.wsac{word-spacing:0.192384pt;}
.wsc{word-spacing:0.212535pt;}
.wsea{word-spacing:0.239104pt;}
.ws23{word-spacing:0.265669pt;}
.ws83{word-spacing:0.277888pt;}
.wsef{word-spacing:0.286925pt;}
.wsa9{word-spacing:0.299264pt;}
.ws21{word-spacing:0.318803pt;}
.wsf5{word-spacing:0.334746pt;}
.ws10{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.wsa8{word-spacing:0.395456pt;}
.wsde{word-spacing:0.425071pt;}
.wsa4{word-spacing:0.465600pt;}
.wse0{word-spacing:0.478205pt;}
.ws9b{word-spacing:0.531339pt;}
.ws94{word-spacing:0.533581pt;}
.wsa7{word-spacing:0.550432pt;}
.ws30{word-spacing:0.584473pt;}
.ws112{word-spacing:0.621670pt;}
.ws34{word-spacing:0.637606pt;}
.wsbb{word-spacing:0.743874pt;}
.wse6{word-spacing:0.765133pt;}
.ws114{word-spacing:0.812954pt;}
.ws19{word-spacing:0.850142pt;}
.wsda{word-spacing:0.956410pt;}
.wscb{word-spacing:1.009543pt;}
.ws4a{word-spacing:1.062677pt;}
.ws4e{word-spacing:1.168945pt;}
.ws1f{word-spacing:1.222079pt;}
.ws3f{word-spacing:1.381481pt;}
.ws35{word-spacing:1.434614pt;}
.ws32{word-spacing:1.540882pt;}
.ws82{word-spacing:1.581824pt;}
.wsdc{word-spacing:1.594016pt;}
.wsd5{word-spacing:1.647150pt;}
.ws99{word-spacing:1.700284pt;}
.wsfc{word-spacing:1.721549pt;}
.wsd0{word-spacing:1.753418pt;}
.ws3c{word-spacing:1.806551pt;}
.ws3b{word-spacing:1.859685pt;}
.ws10b{word-spacing:1.865011pt;}
.ws81{word-spacing:1.934528pt;}
.ws80{word-spacing:1.950560pt;}
.wsf8{word-spacing:2.008474pt;}
.wsaa{word-spacing:2.020032pt;}
.wsab{word-spacing:2.036064pt;}
.wsa{word-spacing:2.072221pt;}
.wsd8{word-spacing:2.125355pt;}
.wse3{word-spacing:2.178489pt;}
.wsd9{word-spacing:2.231622pt;}
.ws1c{word-spacing:2.284756pt;}
.ws2c{word-spacing:2.337890pt;}
.ws6a{word-spacing:2.362048pt;}
.ws46{word-spacing:2.391024pt;}
.ws10f{word-spacing:2.391040pt;}
.ws41{word-spacing:2.444158pt;}
.wsca{word-spacing:2.497292pt;}
.ws8{word-spacing:2.550432pt;}
.ws31{word-spacing:2.603559pt;}
.ws1e{word-spacing:2.656693pt;}
.ws40{word-spacing:2.762961pt;}
.ws10e{word-spacing:2.861474pt;}
.wsf9{word-spacing:2.865493pt;}
.wse7{word-spacing:2.866509pt;}
.wse4{word-spacing:2.869248pt;}
.ws55{word-spacing:3.028630pt;}
.wsf{word-spacing:3.074157pt;}
.ws2a{word-spacing:3.081764pt;}
.ws117{word-spacing:3.108352pt;}
.wscc{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.185311pt;}
.wse2{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.241166pt;}
.ws4b{word-spacing:3.294300pt;}
.ws20{word-spacing:3.400567pt;}
.ws5f{word-spacing:3.453701pt;}
.wsd{word-spacing:3.461705pt;}
.ws16{word-spacing:3.475936pt;}
.ws17{word-spacing:3.477331pt;}
.ws12{word-spacing:3.482156pt;}
.wsd4{word-spacing:3.506835pt;}
.ws61{word-spacing:3.559969pt;}
.ws69{word-spacing:3.585824pt;}
.wsdd{word-spacing:3.719371pt;}
.wsd6{word-spacing:3.772505pt;}
.ws1b{word-spacing:3.825664pt;}
.ws3d{word-spacing:3.878772pt;}
.ws68{word-spacing:3.975936pt;}
.wse1{word-spacing:4.091308pt;}
.ws42{word-spacing:4.144442pt;}
.ws25{word-spacing:4.463245pt;}
.ws47{word-spacing:4.516379pt;}
.ws78{word-spacing:4.521024pt;}
.ws79{word-spacing:4.563776pt;}
.ws48{word-spacing:4.569513pt;}
.ws111{word-spacing:4.734259pt;}
.ws24{word-spacing:4.888316pt;}
.ws36{word-spacing:4.994583pt;}
.ws1d{word-spacing:5.153985pt;}
.ws44{word-spacing:5.260253pt;}
.ws43{word-spacing:5.313387pt;}
.ws49{word-spacing:5.419654pt;}
.ws9a{word-spacing:5.472788pt;}
.ws100{word-spacing:5.642854pt;}
.ws45{word-spacing:5.950993pt;}
.ws85{word-spacing:6.150944pt;}
.ws86{word-spacing:6.215072pt;}
.ws2b{word-spacing:7.013670pt;}
.ws54{word-spacing:7.279340pt;}
.ws9{word-spacing:7.534270pt;}
.ws38{word-spacing:7.916946pt;}
.wsd2{word-spacing:8.554553pt;}
.ws3{word-spacing:9.261206pt;}
.wsd1{word-spacing:10.095435pt;}
.wsf1{word-spacing:10.185830pt;}
.ws65{word-spacing:10.329312pt;}
.ws27{word-spacing:10.582157pt;}
.wsf7{word-spacing:11.668275pt;}
.wse9{word-spacing:11.763917pt;}
.wsfb{word-spacing:11.811738pt;}
.ws101{word-spacing:11.899170pt;}
.ws10c{word-spacing:11.900877pt;}
.ws116{word-spacing:11.901440pt;}
.ws110{word-spacing:11.901474pt;}
.ws115{word-spacing:11.901986pt;}
.wsec{word-spacing:11.902618pt;}
.wsf4{word-spacing:11.906688pt;}
.ws10a{word-spacing:11.907089pt;}
.wsf2{word-spacing:11.907379pt;}
.ws10d{word-spacing:11.955200pt;}
.ws104{word-spacing:12.050842pt;}
.ws103{word-spacing:12.098662pt;}
.ws109{word-spacing:12.143804pt;}
.ws113{word-spacing:12.481229pt;}
.ws37{word-spacing:13.230333pt;}
.ws106{word-spacing:14.476033pt;}
.wsff{word-spacing:14.633165pt;}
.ws107{word-spacing:14.771575pt;}
.ws108{word-spacing:14.772070pt;}
.ws105{word-spacing:14.773461pt;}
.wsfa{word-spacing:14.776252pt;}
.wsee{word-spacing:14.776627pt;}
.wsfe{word-spacing:14.920090pt;}
.wseb{word-spacing:15.159194pt;}
.wsd3{word-spacing:16.524633pt;}
.ws8f{word-spacing:16.843436pt;}
.ws1{word-spacing:19.715148pt;}
.ws53{word-spacing:118.861248pt;}
.ws59{word-spacing:125.098690pt;}
.ws5e{word-spacing:146.352290pt;}
.ws5c{word-spacing:156.979090pt;}
.ws5a{word-spacing:167.605890pt;}
.ws56{word-spacing:179.031594pt;}
.ws71{word-spacing:182.534400pt;}
.ws6f{word-spacing:200.155200pt;}
.ws75{word-spacing:212.294400pt;}
.ws5b{word-spacing:225.602703pt;}
.ws72{word-spacing:231.182400pt;}
.ws70{word-spacing:235.977600pt;}
.ws73{word-spacing:235.982400pt;}
.ws76{word-spacing:235.987200pt;}
.ws58{word-spacing:259.561475pt;}
.ws5d{word-spacing:268.555087pt;}
.wsc5{word-spacing:369.599787pt;}
.wsb7{word-spacing:394.023498pt;}
.wsb5{word-spacing:394.025353pt;}
.wsb4{word-spacing:407.602164pt;}
.wsb6{word-spacing:407.604020pt;}
.ws8d{word-spacing:415.677909pt;}
.ws8c{word-spacing:434.916142pt;}
.ws8e{word-spacing:436.931509pt;}
.ws8b{word-spacing:476.590726pt;}
.ws96{word-spacing:552.211035pt;}
.wsbf{word-spacing:789.517056pt;}
.ws98{word-spacing:917.865353pt;}
.ws97{word-spacing:931.449353pt;}
._37{margin-left:-235.843200pt;}
._41{margin-left:-99.566400pt;}
._38{margin-left:-91.843200pt;}
._2b{margin-left:-90.883200pt;}
._22{margin-left:-84.623872pt;}
._26{margin-left:-71.422568pt;}
._27{margin-left:-30.696000pt;}
._24{margin-left:-27.196800pt;}
._2d{margin-left:-22.053722pt;}
._70{margin-left:-21.160832pt;}
._2c{margin-left:-19.876800pt;}
._87{margin-left:-17.798029pt;}
._23{margin-left:-12.158400pt;}
._5{margin-left:-10.616218pt;}
._6{margin-left:-7.077478pt;}
._b{margin-left:-5.674701pt;}
._9{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._7e{margin-left:-2.292425pt;}
._2{margin-left:-1.338970pt;}
._19{width:1.012928pt;}
._7f{width:2.620992pt;}
._18{width:3.825638pt;}
._81{width:5.116723pt;}
._80{width:6.412800pt;}
._2e{width:8.323162pt;}
._0{width:9.670336pt;}
._3{width:11.528458pt;}
._12{width:13.179368pt;}
._63{width:14.154970pt;}
._c{width:15.206909pt;}
._a{width:16.418365pt;}
._11{width:17.417293pt;}
._85{width:18.448067pt;}
._4{width:19.343872pt;}
._e{width:20.520295pt;}
._15{width:21.784885pt;}
._d{width:23.017587pt;}
._f{width:25.249210pt;}
._10{width:27.045138pt;}
._16{width:28.756045pt;}
._7{width:29.648896pt;}
._1e{width:31.041600pt;}
._17{width:33.524325pt;}
._62{width:34.430746pt;}
._25{width:38.717942pt;}
._28{width:42.049459pt;}
._8{width:48.447314pt;}
._40{width:50.847098pt;}
._29{width:52.625262pt;}
._21{width:54.585600pt;}
._1c{width:57.921600pt;}
._1f{width:67.521600pt;}
._1d{width:69.120000pt;}
._3f{width:73.920000pt;}
._20{width:76.483200pt;}
._86{width:78.904320pt;}
._2a{width:80.323200pt;}
._45{width:83.951720pt;}
._44{width:89.222613pt;}
._48{width:91.092930pt;}
._46{width:97.851574pt;}
._47{width:108.180824pt;}
._1b{width:127.363200pt;}
._3c{width:132.758400pt;}
._39{width:134.990400pt;}
._5a{width:138.715803pt;}
._30{width:140.160000pt;}
._3d{width:152.001600pt;}
._43{width:159.224960pt;}
._3a{width:163.843200pt;}
._42{width:172.318656pt;}
._59{width:176.192344pt;}
._2f{width:179.203200pt;}
._3e{width:185.284800pt;}
._56{width:186.819144pt;}
._58{width:188.893969pt;}
._55{width:190.762335pt;}
._54{width:195.405598pt;}
._3b{width:197.755200pt;}
._31{width:199.675200pt;}
._51{width:206.032398pt;}
._34{width:208.963200pt;}
._32{width:211.843200pt;}
._4a{width:215.464690pt;}
._4d{width:216.659198pt;}
._33{width:223.996800pt;}
._57{width:225.245653pt;}
._64{width:233.022467pt;}
._35{width:235.516800pt;}
._49{width:242.677690pt;}
._53{width:244.416400pt;}
._52{width:252.960347pt;}
._4f{width:255.043200pt;}
._36{width:262.723200pt;}
._69{width:267.780637pt;}
._4b{width:272.173602pt;}
._4e{width:274.213947pt;}
._67{width:285.543454pt;}
._50{width:293.473598pt;}
._4c{width:295.552562pt;}
._71{width:305.029664pt;}
._68{width:326.072731pt;}
._77{width:332.767869pt;}
._66{width:343.840741pt;}
._74{width:346.351869pt;}
._6e{width:357.804338pt;}
._73{width:359.935303pt;}
._5c{width:382.104017pt;}
._5d{width:384.817682pt;}
._5f{width:390.046067pt;}
._75{width:435.698800pt;}
._72{width:444.561533pt;}
._5e{width:447.558309pt;}
._6d{width:452.170322pt;}
._61{width:458.185109pt;}
._76{width:467.409171pt;}
._60{width:468.769402pt;}
._82{width:493.721128pt;}
._83{width:497.886834pt;}
._78{width:498.905003pt;}
._6b{width:508.662398pt;}
._7c{width:511.489138pt;}
._79{width:522.626850pt;}
._6c{width:525.962829pt;}
._65{width:597.226160pt;}
._5b{width:680.667794pt;}
._7a{width:731.336376pt;}
._7d{width:847.091821pt;}
._7b{width:861.246718pt;}
._6a{width:941.840501pt;}
._13{width:1584.013067pt;}
._1a{width:1818.576032pt;}
._6f{width:1830.054464pt;}
._84{width:2159.645067pt;}
._14{width:2180.898400pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:42.560000pt;}
.fse{font-size:44.292800pt;}
.fsc{font-size:47.820800pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs9{font-size:56.000000pt;}
.fsb{font-size:58.560000pt;}
.fs4{font-size:63.761067pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.yb8{bottom:-706.532933pt;}
.yd9{bottom:-635.652141pt;}
.yd8{bottom:-616.292165pt;}
.yd7{bottom:-597.652293pt;}
.y141{bottom:-592.844805pt;}
.yd6{bottom:-578.932261pt;}
.y140{bottom:-574.204933pt;}
.yd5{bottom:-560.292389pt;}
.yd4{bottom:-541.652517pt;}
.y13f{bottom:-539.884533pt;}
.yd3{bottom:-522.932485pt;}
.y13e{bottom:-521.244933pt;}
.yd2{bottom:-504.292613pt;}
.yd1{bottom:-485.652741pt;}
.yd0{bottom:-466.932709pt;}
.y188{bottom:-448.761333pt;}
.ycf{bottom:-448.292837pt;}
.yce{bottom:-429.652965pt;}
.ycd{bottom:-410.932933pt;}
.y1a5{bottom:-404.841333pt;}
.y1a4{bottom:-386.201333pt;}
.ycc{bottom:-375.332800pt;}
.y1a3{bottom:-367.481333pt;}
.ycb{bottom:-358.532800pt;}
.y1a2{bottom:-348.841333pt;}
.yca{bottom:-341.652933pt;}
.y1a1{bottom:-330.201333pt;}
.yc9{bottom:-324.772800pt;}
.yc8{bottom:-307.972933pt;}
.y1a0{bottom:-306.761333pt;}
.yc7{bottom:-291.092933pt;}
.yc6{bottom:-274.212933pt;}
.y19f{bottom:-268.574667pt;}
.yc5{bottom:-257.332933pt;}
.y19e{bottom:-250.574667pt;}
.yc4{bottom:-240.532933pt;}
.y19d{bottom:-232.654667pt;}
.yc3{bottom:-223.652933pt;}
.y19c{bottom:-214.654667pt;}
.yc2{bottom:-206.772933pt;}
.y19b{bottom:-196.014667pt;}
.yc1{bottom:-189.973333pt;}
.y19a{bottom:-169.054667pt;}
.yc0{bottom:-164.452933pt;}
.y199{bottom:-150.334667pt;}
.y198{bottom:-131.694667pt;}
.ybf{bottom:-129.332581pt;}
.y13d{bottom:-122.204709pt;}
.ybe{bottom:-110.692709pt;}
.y14d{bottom:-103.735472pt;}
.y13c{bottom:-103.484677pt;}
.y197{bottom:-96.654667pt;}
.ybd{bottom:-92.052837pt;}
.y14c{bottom:-85.095600pt;}
.y13b{bottom:-84.844805pt;}
.y196{bottom:-77.934667pt;}
.ybc{bottom:-73.332805pt;}
.y13a{bottom:-66.204933pt;}
.y195{bottom:-59.294667pt;}
.ybb{bottom:-54.692933pt;}
.y14b{bottom:-50.775200pt;}
.y14a{bottom:-32.135600pt;}
.y139{bottom:-31.884933pt;}
.y194{bottom:-25.054667pt;}
.yba{bottom:-19.892933pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:0.945333pt;}
.yb9{bottom:2.826955pt;}
.y18c{bottom:4.000000pt;}
.y1ba{bottom:4.800000pt;}
.y1bf{bottom:14.080000pt;}
.ye7{bottom:21.627067pt;}
.y1af{bottom:31.200000pt;}
.ye0{bottom:35.787435pt;}
.y1a7{bottom:36.106667pt;}
.y1be{bottom:38.000000pt;}
.y40{bottom:40.818667pt;}
.y1ab{bottom:47.280000pt;}
.ydf{bottom:57.627027pt;}
.y1bd{bottom:61.920000pt;}
.y1a8{bottom:64.080000pt;}
.ye1{bottom:77.867427pt;}
.y1b0{bottom:81.520000pt;}
.y1bc{bottom:85.840000pt;}
.y3f{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y184{bottom:89.948000pt;}
.yde{bottom:90.906787pt;}
.y1de{bottom:91.214667pt;}
.y249{bottom:94.188000pt;}
.y9d{bottom:100.722667pt;}
.yda{bottom:101.067067pt;}
.y1e8{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.y3e{bottom:107.209333pt;}
.y183{bottom:108.517333pt;}
.y1dd{bottom:109.785333pt;}
.y248{bottom:111.210667pt;}
.y1aa{bottom:112.906667pt;}
.ydd{bottom:115.787115pt;}
.ye5{bottom:118.027587pt;}
.y9c{bottom:119.293333pt;}
.ydb{bottom:119.947419pt;}
.ye2{bottom:120.027579pt;}
.y217{bottom:120.337333pt;}
.y14{bottom:120.920000pt;}
.y1e7{bottom:122.042667pt;}
.y3d{bottom:125.780000pt;}
.y247{bottom:128.233333pt;}
.y1dc{bottom:128.356000pt;}
.y1b4{bottom:129.840000pt;}
.y1b1{bottom:131.840000pt;}
.y70{bottom:136.112000pt;}
.y1a9{bottom:136.746667pt;}
.y13{bottom:136.821333pt;}
.y216{bottom:137.360000pt;}
.y9b{bottom:137.862667pt;}
.y1e6{bottom:140.613333pt;}
.y1b8{bottom:141.866667pt;}
.y3c{bottom:144.350667pt;}
.y246{bottom:145.256000pt;}
.y1db{bottom:146.925333pt;}
.y1ae{bottom:147.920000pt;}
.y106{bottom:147.941333pt;}
.y182{bottom:149.565333pt;}
.y12{bottom:152.721333pt;}
.y215{bottom:154.382667pt;}
.y6f{bottom:154.681333pt;}
.y9a{bottom:156.433333pt;}
.y1e5{bottom:159.184000pt;}
.y181{bottom:160.442667pt;}
.ye3{bottom:162.187731pt;}
.y245{bottom:162.278667pt;}
.y3b{bottom:162.920000pt;}
.y1b7{bottom:164.746667pt;}
.y1da{bottom:165.496000pt;}
.y105{bottom:166.512000pt;}
.y11{bottom:168.621333pt;}
.y180{bottom:171.318667pt;}
.y214{bottom:171.405333pt;}
.y6e{bottom:173.252000pt;}
.y99{bottom:175.004000pt;}
.y1e4{bottom:177.753333pt;}
.y244{bottom:179.301333pt;}
.y3a{bottom:181.490667pt;}
.y17f{bottom:181.945333pt;}
.y1b2{bottom:182.186667pt;}
.ydc{bottom:182.747435pt;}
.y1d9{bottom:184.066667pt;}
.y10{bottom:184.522667pt;}
.y104{bottom:185.081333pt;}
.y1ad{bottom:186.160000pt;}
.y1b6{bottom:187.653333pt;}
.y213{bottom:188.428000pt;}
.y6d{bottom:191.822667pt;}
.y98{bottom:193.574667pt;}
.y1e3{bottom:196.324000pt;}
.y17e{bottom:199.224000pt;}
.y39{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.y1d8{bottom:202.636000pt;}
.y103{bottom:203.652000pt;}
.ye4{bottom:204.347883pt;}
.y212{bottom:205.450667pt;}
.y1ac{bottom:209.413333pt;}
.y6c{bottom:210.392000pt;}
.y1b5{bottom:210.560000pt;}
.y97{bottom:212.144000pt;}
.y243{bottom:213.346667pt;}
.y1e2{bottom:214.894667pt;}
.y38{bottom:218.632000pt;}
.y1d7{bottom:221.206667pt;}
.y102{bottom:222.222667pt;}
.y211{bottom:222.473333pt;}
.y150{bottom:223.225333pt;}
.ye{bottom:224.293333pt;}
.y17d{bottom:224.780000pt;}
.ye6{bottom:228.987067pt;}
.y242{bottom:230.369333pt;}
.y96{bottom:230.714667pt;}
.y1b3{bottom:232.506667pt;}
.y6b{bottom:232.948000pt;}
.y1e1{bottom:233.464000pt;}
.y37{bottom:237.201333pt;}
.y210{bottom:239.496000pt;}
.y1d6{bottom:239.777333pt;}
.yd{bottom:240.193333pt;}
.y101{bottom:240.792000pt;}
.y14f{bottom:241.796000pt;}
.y17c{bottom:241.876000pt;}
.y241{bottom:247.392000pt;}
.y95{bottom:249.285333pt;}
.y1e0{bottom:252.034667pt;}
.y6a{bottom:254.665333pt;}
.y36{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.y20f{bottom:256.518667pt;}
.y1d5{bottom:258.346667pt;}
.y100{bottom:259.362667pt;}
.y240{bottom:264.414667pt;}
.y94{bottom:267.854667pt;}
.y1df{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y14e{bottom:273.465333pt;}
.y20e{bottom:273.541333pt;}
.y35{bottom:274.342667pt;}
.y17b{bottom:274.857333pt;}
.y1d4{bottom:276.917333pt;}
.yff{bottom:277.933333pt;}
.y136{bottom:279.593333pt;}
.y23f{bottom:281.437333pt;}
.yb4{bottom:285.576000pt;}
.y93{bottom:286.425333pt;}
.ya{bottom:287.894667pt;}
.y69{bottom:289.176000pt;}
.y20d{bottom:290.564000pt;}
.y34{bottom:292.912000pt;}
.y143{bottom:293.402667pt;}
.y17a{bottom:293.428000pt;}
.y1d3{bottom:295.488000pt;}
.yfe{bottom:296.504000pt;}
.y135{bottom:298.164000pt;}
.y23e{bottom:298.460000pt;}
.yb7{bottom:303.467187pt;}
.y9{bottom:303.794667pt;}
.yb3{bottom:304.145333pt;}
.y92{bottom:304.996000pt;}
.y20c{bottom:307.588000pt;}
.y68{bottom:307.745333pt;}
.y33{bottom:311.482667pt;}
.y179{bottom:311.998667pt;}
.yb6{bottom:312.027067pt;}
.y1d2{bottom:314.058667pt;}
.yfd{bottom:315.073333pt;}
.y23d{bottom:315.482667pt;}
.y134{bottom:316.734667pt;}
.y8{bottom:319.696000pt;}
.yb2{bottom:322.716000pt;}
.y20b{bottom:324.610667pt;}
.y67{bottom:326.316000pt;}
.y91{bottom:327.550667pt;}
.y32{bottom:330.053333pt;}
.y23c{bottom:332.506667pt;}
.y1d1{bottom:332.628000pt;}
.yfc{bottom:333.644000pt;}
.y133{bottom:335.304000pt;}
.y7{bottom:335.596000pt;}
.y192{bottom:338.092000pt;}
.yb1{bottom:341.286667pt;}
.y20a{bottom:341.633333pt;}
.y66{bottom:344.886667pt;}
.y31{bottom:348.622667pt;}
.y23b{bottom:349.529333pt;}
.y90{bottom:350.106667pt;}
.y1d0{bottom:351.198667pt;}
.y6{bottom:351.496000pt;}
.y178{bottom:353.046667pt;}
.y132{bottom:353.874667pt;}
.y191{bottom:356.732000pt;}
.y209{bottom:358.656000pt;}
.y65{bottom:363.456000pt;}
.y177{bottom:363.673333pt;}
.yb0{bottom:363.841333pt;}
.y23a{bottom:366.552000pt;}
.y149{bottom:366.904624pt;}
.y1cf{bottom:369.769333pt;}
.y30{bottom:371.178667pt;}
.y131{bottom:372.445333pt;}
.y5{bottom:372.710667pt;}
.y176{bottom:374.300000pt;}
.y208{bottom:375.678667pt;}
.yfb{bottom:377.349333pt;}
.y8f{bottom:381.521333pt;}
.y64{bottom:382.026667pt;}
.y239{bottom:383.574667pt;}
.y175{bottom:384.926667pt;}
.y148{bottom:385.624656pt;}
.y138{bottom:386.995067pt;}
.y1ce{bottom:388.338667pt;}
.y4{bottom:388.610667pt;}
.y130{bottom:391.016000pt;}
.y207{bottom:392.701333pt;}
.yfa{bottom:394.626667pt;}
.y174{bottom:395.553333pt;}
.yaf{bottom:398.352000pt;}
.y8e{bottom:400.092000pt;}
.y63{bottom:400.597333pt;}
.y147{bottom:404.264528pt;}
.y3{bottom:404.510667pt;}
.y173{bottom:406.180000pt;}
.y1cd{bottom:406.909333pt;}
.y12f{bottom:409.585333pt;}
.y206{bottom:409.724000pt;}
.yf9{bottom:411.905333pt;}
.y172{bottom:416.806667pt;}
.yae{bottom:416.922667pt;}
.y238{bottom:417.620000pt;}
.y8c{bottom:418.662667pt;}
.y62{bottom:419.166667pt;}
.y2{bottom:420.412000pt;}
.y146{bottom:422.904400pt;}
.y8d{bottom:423.484000pt;}
.y205{bottom:426.746667pt;}
.y171{bottom:427.433333pt;}
.yf8{bottom:429.184000pt;}
.y1cc{bottom:429.464000pt;}
.y237{bottom:434.642667pt;}
.yad{bottom:435.492000pt;}
.y8b{bottom:437.232000pt;}
.y61{bottom:437.737333pt;}
.y2f{bottom:441.589333pt;}
.y1{bottom:441.625333pt;}
.y204{bottom:443.769333pt;}
.y170{bottom:444.462667pt;}
.yf7{bottom:446.462667pt;}
.y12e{bottom:450.633333pt;}
.y236{bottom:451.665333pt;}
.yac{bottom:454.062667pt;}
.y8a{bottom:455.802667pt;}
.y60{bottom:456.308000pt;}
.y145{bottom:457.224400pt;}
.y203{bottom:460.792000pt;}
.y12d{bottom:461.260000pt;}
.yf6{bottom:463.741333pt;}
.y235{bottom:468.688000pt;}
.y16f{bottom:470.018667pt;}
.y1cb{bottom:470.513333pt;}
.y12c{bottom:471.888000pt;}
.yab{bottom:472.633333pt;}
.y89{bottom:474.373333pt;}
.y5f{bottom:474.877333pt;}
.y2e{bottom:476.100000pt;}
.y202{bottom:477.814667pt;}
.yf5{bottom:481.020000pt;}
.y1ca{bottom:481.389333pt;}
.y12b{bottom:482.514667pt;}
.y234{bottom:485.710667pt;}
.y16e{bottom:487.114667pt;}
.yaa{bottom:491.202667pt;}
.y1c9{bottom:492.265333pt;}
.y18a{bottom:492.278667pt;}
.y88{bottom:492.942667pt;}
.y12a{bottom:493.141333pt;}
.y5e{bottom:493.448000pt;}
.y2d{bottom:494.669333pt;}
.y201{bottom:494.837333pt;}
.yf4{bottom:498.298667pt;}
.y233{bottom:502.733333pt;}
.y1c8{bottom:502.892000pt;}
.y129{bottom:503.768000pt;}
.ya9{bottom:509.773333pt;}
.y189{bottom:510.998667pt;}
.y87{bottom:511.513333pt;}
.y200{bottom:511.860000pt;}
.y5d{bottom:512.018667pt;}
.y2c{bottom:513.240000pt;}
.y128{bottom:514.394667pt;}
.yf3{bottom:515.577333pt;}
.y232{bottom:519.756000pt;}
.y16d{bottom:520.096000pt;}
.y1c7{bottom:520.170667pt;}
.y127{bottom:525.021333pt;}
.ya8{bottom:528.344000pt;}
.y1ff{bottom:528.882667pt;}
.y86{bottom:530.084000pt;}
.y5c{bottom:530.589333pt;}
.y2b{bottom:531.810667pt;}
.yf2{bottom:532.606667pt;}
.y126{bottom:535.648000pt;}
.y231{bottom:536.778667pt;}
.y16c{bottom:538.666667pt;}
.y1c6{bottom:545.726667pt;}
.y1fe{bottom:545.905333pt;}
.y125{bottom:546.274667pt;}
.ya7{bottom:546.913333pt;}
.y85{bottom:548.653333pt;}
.y5b{bottom:549.158667pt;}
.yf1{bottom:549.885333pt;}
.yf0{bottom:550.004000pt;}
.y2a{bottom:550.380000pt;}
.y230{bottom:553.801333pt;}
.y124{bottom:556.901333pt;}
.y16b{bottom:557.236000pt;}
.y187{bottom:561.318667pt;}
.y1c5{bottom:562.822667pt;}
.y1fd{bottom:562.928000pt;}
.ya6{bottom:565.484000pt;}
.yef{bottom:567.153333pt;}
.y84{bottom:567.224000pt;}
.y123{bottom:567.529333pt;}
.y5a{bottom:567.729333pt;}
.y29{bottom:568.950667pt;}
.y186{bottom:569.878667pt;}
.y22f{bottom:570.824000pt;}
.y16a{bottom:575.806667pt;}
.y122{bottom:578.156000pt;}
.y1c4{bottom:579.918667pt;}
.y1fc{bottom:579.950667pt;}
.y83{bottom:585.794667pt;}
.y59{bottom:586.300000pt;}
.y28{bottom:587.521333pt;}
.y22e{bottom:587.846667pt;}
.ya5{bottom:588.040000pt;}
.y121{bottom:588.782667pt;}
.y169{bottom:594.377333pt;}
.yee{bottom:595.126667pt;}
.y120{bottom:599.409333pt;}
.y1fb{bottom:600.958667pt;}
.y82{bottom:604.365333pt;}
.y58{bottom:604.869333pt;}
.y27{bottom:606.090667pt;}
.y11f{bottom:610.036000pt;}
.y1c3{bottom:612.900000pt;}
.ya4{bottom:619.454667pt;}
.y11e{bottom:620.662667pt;}
.y22d{bottom:621.892000pt;}
.y81{bottom:622.934667pt;}
.y57{bottom:623.440000pt;}
.yed{bottom:624.648000pt;}
.y26{bottom:624.661333pt;}
.y11d{bottom:631.289333pt;}
.y1c2{bottom:631.470667pt;}
.y168{bottom:635.425333pt;}
.y1fa{bottom:635.469333pt;}
.ya3{bottom:638.025333pt;}
.y22c{bottom:638.914667pt;}
.y80{bottom:641.505333pt;}
.y56{bottom:642.010667pt;}
.yec{bottom:643.217333pt;}
.y25{bottom:643.232000pt;}
.y167{bottom:646.052000pt;}
.y11c{bottom:648.318667pt;}
.y1c1{bottom:650.040000pt;}
.y22b{bottom:655.937333pt;}
.ya2{bottom:656.596000pt;}
.y166{bottom:656.678667pt;}
.y7f{bottom:660.076000pt;}
.y55{bottom:660.580000pt;}
.y1f9{bottom:660.772000pt;}
.yeb{bottom:661.788000pt;}
.y24{bottom:661.801333pt;}
.y165{bottom:667.305333pt;}
.y142{bottom:667.593333pt;}
.y22a{bottom:672.961333pt;}
.y11b{bottom:673.874667pt;}
.ya1{bottom:675.165333pt;}
.y164{bottom:677.932000pt;}
.y7e{bottom:678.645333pt;}
.y54{bottom:679.150667pt;}
.yea{bottom:680.358667pt;}
.y23{bottom:680.372000pt;}
.y1c0{bottom:681.709333pt;}
.y1f8{bottom:686.074667pt;}
.y137{bottom:687.530667pt;}
.y163{bottom:688.558667pt;}
.y229{bottom:689.984000pt;}
.y11a{bottom:690.970667pt;}
.ya0{bottom:693.736000pt;}
.y53{bottom:697.721333pt;}
.ye9{bottom:698.928000pt;}
.y22{bottom:698.942667pt;}
.y162{bottom:699.186667pt;}
.y7d{bottom:701.201333pt;}
.y24c{bottom:702.801333pt;}
.y1f7{bottom:703.406667pt;}
.y185{bottom:704.304000pt;}
.y228{bottom:707.006667pt;}
.y1a6{bottom:707.062667pt;}
.y161{bottom:709.813333pt;}
.y9f{bottom:712.306667pt;}
.y1b9{bottom:714.529333pt;}
.y52{bottom:716.290667pt;}
.y21{bottom:717.513333pt;}
.y24b{bottom:719.824000pt;}
.y7c{bottom:723.756000pt;}
.y119{bottom:723.952000pt;}
.y227{bottom:724.029333pt;}
.y160{bottom:726.841333pt;}
.y1f6{bottom:728.708000pt;}
.ye8{bottom:730.597333pt;}
.y9e{bottom:730.876000pt;}
.y51{bottom:734.861333pt;}
.y20{bottom:736.082667pt;}
.y24a{bottom:736.848000pt;}
.y226{bottom:741.052000pt;}
.y118{bottom:742.521333pt;}
.y1f5{bottom:746.041333pt;}
.y15f{bottom:752.397333pt;}
.yb5{bottom:753.192000pt;}
.y50{bottom:753.432000pt;}
.y1f{bottom:754.653333pt;}
.y7b{bottom:755.172000pt;}
.y225{bottom:758.074667pt;}
.y1f4{bottom:763.373333pt;}
.y15e{bottom:769.493333pt;}
.y4f{bottom:772.002667pt;}
.y7a{bottom:773.742667pt;}
.y224{bottom:775.097333pt;}
.y117{bottom:783.570667pt;}
.y1f3{bottom:788.674667pt;}
.y1e{bottom:790.074667pt;}
.y4e{bottom:790.572000pt;}
.y223{bottom:792.120000pt;}
.y79{bottom:792.312000pt;}
.y116{bottom:800.598667pt;}
.y15d{bottom:802.474667pt;}
.y1d{bottom:804.421333pt;}
.y4d{bottom:809.142667pt;}
.y113{bottom:810.209333pt;}
.y78{bottom:810.882667pt;}
.y1f2{bottom:813.977333pt;}
.y115{bottom:817.628000pt;}
.y1c{bottom:818.768000pt;}
.y15c{bottom:821.045333pt;}
.y222{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.y77{bottom:829.453333pt;}
.y1f1{bottom:831.309333pt;}
.y1bb{bottom:833.116000pt;}
.y114{bottom:834.906667pt;}
.y15b{bottom:839.616000pt;}
.y221{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.y76{bottom:848.022667pt;}
.y1f0{bottom:848.642667pt;}
.y112{bottom:852.185333pt;}
.y220{bottom:860.210667pt;}
.y1b{bottom:862.185333pt;}
.y4a{bottom:864.853333pt;}
.y1ef{bottom:865.974667pt;}
.y75{bottom:866.593333pt;}
.y10f{bottom:867.109333pt;}
.y111{bottom:869.214667pt;}
.y144{bottom:876.104400pt;}
.y21f{bottom:877.233333pt;}
.y15a{bottom:880.664000pt;}
.y1ee{bottom:883.306667pt;}
.y49{bottom:883.424000pt;}
.y74{bottom:885.164000pt;}
.y110{bottom:886.492000pt;}
.y159{bottom:891.290667pt;}
.y21e{bottom:894.256000pt;}
.y1a{bottom:896.696000pt;}
.y158{bottom:901.917333pt;}
.y48{bottom:901.993333pt;}
.y73{bottom:903.733333pt;}
.y10e{bottom:903.770667pt;}
.y21d{bottom:911.278667pt;}
.y157{bottom:912.544000pt;}
.y1ed{bottom:916.578667pt;}
.y47{bottom:920.564000pt;}
.y10d{bottom:920.800000pt;}
.y72{bottom:922.304000pt;}
.y156{bottom:923.170667pt;}
.y19{bottom:924.552000pt;}
.y21c{bottom:928.301333pt;}
.y10a{bottom:930.410667pt;}
.y155{bottom:933.797333pt;}
.y1ec{bottom:935.149333pt;}
.y10c{bottom:937.829333pt;}
.y46{bottom:939.134667pt;}
.y154{bottom:944.424000pt;}
.y71{bottom:944.860000pt;}
.y21b{bottom:945.324000pt;}
.y18{bottom:952.406667pt;}
.y1eb{bottom:953.720000pt;}
.y153{bottom:955.050667pt;}
.y10b{bottom:955.108000pt;}
.y45{bottom:957.704000pt;}
.y21a{bottom:962.346667pt;}
.y152{bottom:972.080000pt;}
.y1ea{bottom:972.289333pt;}
.y109{bottom:972.386667pt;}
.y44{bottom:976.274667pt;}
.y219{bottom:979.369333pt;}
.y17{bottom:980.262667pt;}
.y108{bottom:989.414667pt;}
.y1e9{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y218{bottom:996.392000pt;}
.y151{bottom:997.636000pt;}
.y42{bottom:1013.414667pt;}
.y107{bottom:1014.732000pt;}
.y41{bottom:1066.841333pt;}
.y190{bottom:1093.036000pt;}
.y18f{bottom:1111.036000pt;}
.y18e{bottom:1129.036000pt;}
.y18d{bottom:1146.982667pt;}
.y18b{bottom:1165.702667pt;}
.h28{height:-254.574667pt;}
.h27{height:-236.654667pt;}
.h26{height:-218.654667pt;}
.h25{height:-200.654667pt;}
.h24{height:-182.014667pt;}
.h1e{height:-139.002667pt;}
.h20{height:-120.282667pt;}
.h21{height:-102.336000pt;}
.h22{height:-84.336000pt;}
.h23{height:-66.336000pt;}
.h2d{height:20.720000pt;}
.h18{height:30.605184pt;}
.h9{height:32.411659pt;}
.h2{height:33.771789pt;}
.h11{height:35.343750pt;}
.he{height:35.617969pt;}
.h13{height:36.348594pt;}
.ha{height:36.666735pt;}
.h17{height:36.873667pt;}
.h5{height:38.256384pt;}
.h6{height:38.596538pt;}
.h3{height:38.947124pt;}
.h19{height:39.092538pt;}
.h1a{height:39.097871pt;}
.h12{height:39.349375pt;}
.hc{height:39.588281pt;}
.h15{height:39.831094pt;}
.h2c{height:40.367031pt;}
.h1f{height:41.462969pt;}
.h16{height:43.421286pt;}
.h10{height:44.648438pt;}
.h8{height:45.907968pt;}
.h29{height:47.125000pt;}
.h14{height:48.000000pt;}
.h7{height:48.245551pt;}
.hd{height:49.708594pt;}
.hf{height:52.089844pt;}
.h2b{height:53.152969pt;}
.h4{height:68.861952pt;}
.h2e{height:102.800000pt;}
.hb{height:273.508000pt;}
.h2a{height:315.360000pt;}
.h1d{height:322.396000pt;}
.h1b{height:339.169333pt;}
.h1c{height:343.824000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:97.680000pt;}
.w8{width:99.678667pt;}
.w6{width:143.466667pt;}
.w7{width:218.186667pt;}
.wa{width:356.453333pt;}
.w3{width:423.446667pt;}
.w4{width:431.201333pt;}
.w9{width:566.560000pt;}
.w5{width:574.375733pt;}
.w2{width:575.968800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x69{left:-184.145333pt;}
.x6c{left:-182.594667pt;}
.x70{left:-60.822933pt;}
.x43{left:-59.541867pt;}
.x4e{left:-55.701867pt;}
.x4d{left:-43.301867pt;}
.x4c{left:-41.141867pt;}
.x4b{left:-28.501867pt;}
.x48{left:-27.541867pt;}
.x49{left:-16.501867pt;}
.x4a{left:-14.821867pt;}
.x6a{left:-10.305333pt;}
.x6d{left:-8.754667pt;}
.x0{left:0.000000pt;}
.x84{left:9.600000pt;}
.x6b{left:18.014667pt;}
.x6e{left:19.565333pt;}
.x7b{left:24.880000pt;}
.x82{left:27.040000pt;}
.x78{left:28.240000pt;}
.x55{left:34.941141pt;}
.x81{left:45.440000pt;}
.x1{left:47.621333pt;}
.x80{left:52.213333pt;}
.x54{left:53.420693pt;}
.x62{left:58.453333pt;}
.x53{left:60.140773pt;}
.x61{left:68.809333pt;}
.x60{left:70.732000pt;}
.x72{left:71.680000pt;}
.xa3{left:75.710667pt;}
.x76{left:76.640000pt;}
.x74{left:79.040000pt;}
.x5f{left:82.830667pt;}
.x5c{left:83.734667pt;}
.x4f{left:92.218133pt;}
.x57{left:94.458133pt;}
.x77{left:104.640000pt;}
.x42{left:108.677867pt;}
.x71{left:113.043733pt;}
.x45{left:114.298133pt;}
.x7d{left:125.760000pt;}
.x7c{left:129.200000pt;}
.x7e{left:130.880000pt;}
.x79{left:141.363733pt;}
.x46{left:142.618133pt;}
.x50{left:191.579125pt;}
.x83{left:201.317333pt;}
.x5{left:219.865333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x67{left:229.828000pt;}
.x51{left:241.259621pt;}
.x7f{left:244.906667pt;}
.x4{left:250.204000pt;}
.x29{left:252.129333pt;}
.x47{left:253.019333pt;}
.x58{left:256.049333pt;}
.x64{left:258.205333pt;}
.x28{left:263.490667pt;}
.x94{left:272.225333pt;}
.x91{left:273.145333pt;}
.x56{left:279.098133pt;}
.x95{left:285.508000pt;}
.x92{left:286.429333pt;}
.x10{left:287.572000pt;}
.x35{left:292.192000pt;}
.x11{left:294.213333pt;}
.x3b{left:299.017333pt;}
.x12{left:300.722667pt;}
.x36{left:305.476000pt;}
.x16{left:308.568000pt;}
.x3c{left:312.300000pt;}
.x13{left:314.006667pt;}
.x17{left:315.209333pt;}
.x32{left:317.109333pt;}
.x18{left:318.574667pt;}
.xe{left:319.977333pt;}
.xf{left:326.618667pt;}
.x19{left:331.857333pt;}
.x1a{left:335.221333pt;}
.x1b{left:348.505333pt;}
.x5b{left:364.300000pt;}
.x73{left:365.984000pt;}
.x86{left:385.084000pt;}
.x65{left:388.177333pt;}
.x30{left:392.884000pt;}
.x52{left:398.779365pt;}
.x26{left:404.416000pt;}
.x31{left:406.168000pt;}
.x68{left:412.385333pt;}
.x14{left:415.526667pt;}
.x27{left:417.698667pt;}
.x15{left:428.810667pt;}
.x3d{left:430.900000pt;}
.x3a{left:434.233333pt;}
.x1e{left:435.734667pt;}
.x63{left:442.010667pt;}
.x25{left:447.289333pt;}
.x1f{left:449.017333pt;}
.xc{left:460.709333pt;}
.xd{left:467.350667pt;}
.x87{left:482.870667pt;}
.x2a{left:489.022667pt;}
.x88{left:496.153333pt;}
.x2e{left:500.478667pt;}
.x2b{left:502.305333pt;}
.x98{left:503.362667pt;}
.x2c{left:505.693333pt;}
.x99{left:506.749333pt;}
.x9c{left:511.976000pt;}
.x2f{left:513.762667pt;}
.x38{left:516.426667pt;}
.x2d{left:518.977333pt;}
.x5d{left:520.725333pt;}
.x96{left:523.814667pt;}
.x66{left:525.938667pt;}
.x9d{left:528.513333pt;}
.x39{left:529.709333pt;}
.x21{left:536.013333pt;}
.x97{left:537.098667pt;}
.x34{left:540.206667pt;}
.x9e{left:541.797333pt;}
.x9f{left:545.052000pt;}
.x22{left:549.297333pt;}
.x23{left:552.684000pt;}
.xa0{left:558.334667pt;}
.x85{left:563.130667pt;}
.xa1{left:564.844000pt;}
.x24{left:565.968000pt;}
.x7a{left:572.137067pt;}
.x44{left:573.338701pt;}
.xa2{left:578.128000pt;}
.x5e{left:582.616000pt;}
.x75{left:584.170667pt;}
.x93{left:588.209333pt;}
.x8f{left:601.989333pt;}
.x33{left:607.700000pt;}
.x37{left:612.461333pt;}
.x6{left:614.852000pt;}
.x90{left:618.660000pt;}
.x7{left:621.493333pt;}
.x8{left:624.881333pt;}
.x9{left:631.522667pt;}
.x3e{left:655.478667pt;}
.x89{left:665.768000pt;}
.x3f{left:668.761333pt;}
.x9a{left:674.494667pt;}
.x8a{left:679.050667pt;}
.x40{left:685.018667pt;}
.x9b{left:687.777333pt;}
.x6f{left:690.898667pt;}
.x8d{left:694.076000pt;}
.x41{left:698.301333pt;}
.x1c{left:702.589333pt;}
.x8e{left:707.360000pt;}
.x8b{left:710.614667pt;}
.x59{left:713.356000pt;}
.x1d{left:715.873333pt;}
.x8c{left:723.897333pt;}
.x20{left:726.248000pt;}
.x5a{left:727.594667pt;}
.xa{left:733.484000pt;}
.xb{left:740.126667pt;}
}




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