
    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_6295af5e2df90f42bc57f7a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9943efd3d595243373341d5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_155541c50eab2a52da206ebc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight: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_cd6adaacd904e1261c066112.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_36980916acd85a0701143dcc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_acaaca6148b6fd3358bbc967.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_03485c8986dd0499e0a2af7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3d4cd0629a9028dae70ba813.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;font-style:normal;font-weight: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_1a186f7b242b033300ac09ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c250cf14958cc87970051f0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_20cee7b87d9dff87c56a0f66.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e7394ab2d3d866ae7f925157.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a3cad6069596e1f196e4fbc3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_15348f1fc8e6dea30777b51d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.673000;font-style:normal;font-weight: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_7e26e32bd386f9686d620d52.woff2')format("woff");}.fff{font-family:fff;line-height:0.879000;font-style:normal;font-weight: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_2aa64cd91e7e10c7ad9a5c03.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.580000;font-style:normal;font-weight: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_453fc3b8e0313fc1657081b0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.877000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e325b329a7031130eb517705.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c4cfb7ac1d76f1055701e9fe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.635000;font-style:normal;font-weight: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_6f0af9a453ad09c74ef6b2cc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.881000;font-style:normal;font-weight: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_1db10d02770a6b1dea0165ed.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.635000;font-style:normal;font-weight: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_a2052a10a7be7c94d327c9cf.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8895268323680de692ceeaa2.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff19{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_027ce2d46d37561f7bf8e59f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.635000;font-style:normal;font-weight: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_620acc5abb89ed1bb6f1aa9e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_b2eb3f2e377fd28a14bdfeea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.881000;font-style:normal;font-weight: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_0a8d25200f8dc8b9a8a6b5c1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_3e645695bae0b9396ef2f94f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.834000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.vc{vertical-align:-14.610000px;}
.v5{vertical-align:-8.970000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:9.462000px;}
.v3{vertical-align:12.870000px;}
.v4{vertical-align:15.108000px;}
.v6{vertical-align:21.696000px;}
.v1{vertical-align:22.854000px;}
.va{vertical-align:23.979188px;}
.v9{vertical-align:26.070000px;}
.v8{vertical-align:28.722000px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000305px;}
.ls2c{letter-spacing:0.000537px;}
.ls19{letter-spacing:0.000557px;}
.ls1c{letter-spacing:0.000891px;}
.ls20{letter-spacing:0.001405px;}
.ls21{letter-spacing:0.001559px;}
.ls29{letter-spacing:0.002338px;}
.ls14{letter-spacing:0.003269px;}
.ls44{letter-spacing:0.003487px;}
.ls23{letter-spacing:5.809235px;}
.ls1e{letter-spacing:5.815235px;}
.lsa{letter-spacing:6.516305px;}
.ls12{letter-spacing:8.426338px;}
.ls40{letter-spacing:9.962338px;}
.ls13{letter-spacing:13.496338px;}
.ls16{letter-spacing:13.502338px;}
.ls11{letter-spacing:14.946305px;}
.ls17{letter-spacing:16.488648px;}
.ls22{letter-spacing:16.528994px;}
.ls3d{letter-spacing:16.602538px;}
.ls24{letter-spacing:18.347282px;}
.ls34{letter-spacing:18.419282px;}
.ls1f{letter-spacing:18.793225px;}
.ls3f{letter-spacing:18.809607px;}
.ls26{letter-spacing:19.842305px;}
.ls1{letter-spacing:19.921559px;}
.ls0{letter-spacing:19.925468px;}
.ls15{letter-spacing:20.016305px;}
.ls10{letter-spacing:20.486525px;}
.ls2d{letter-spacing:21.367901px;}
.ls27{letter-spacing:21.582305px;}
.ls1d{letter-spacing:21.648891px;}
.ls1b{letter-spacing:21.775235px;}
.lsc{letter-spacing:21.837172px;}
.ls41{letter-spacing:21.885172px;}
.ls5{letter-spacing:23.292305px;}
.lsf{letter-spacing:23.652648px;}
.ls42{letter-spacing:23.695409px;}
.ls35{letter-spacing:23.699282px;}
.ls1a{letter-spacing:23.886490px;}
.ls32{letter-spacing:24.293282px;}
.ls31{letter-spacing:24.299282px;}
.ls25{letter-spacing:24.318648px;}
.ls4{letter-spacing:24.792305px;}
.ls3e{letter-spacing:25.326305px;}
.ls3{letter-spacing:25.527172px;}
.lse{letter-spacing:25.554305px;}
.ls6{letter-spacing:25.965172px;}
.ls3a{letter-spacing:26.436538px;}
.lsd{letter-spacing:26.700305px;}
.ls3c{letter-spacing:27.967140px;}
.lsb{letter-spacing:28.182305px;}
.ls9{letter-spacing:29.841172px;}
.ls8{letter-spacing:31.560305px;}
.ls7{letter-spacing:33.318305px;}
.ls33{letter-spacing:35.675282px;}
.ls43{letter-spacing:51.414300px;}
.ls36{letter-spacing:127.403282px;}
.ls28{letter-spacing:129.312648px;}
.ls18{letter-spacing:133.525235px;}
.ls39{letter-spacing:134.988648px;}
.ls2a{letter-spacing:136.584648px;}
.ls38{letter-spacing:149.021282px;}
.ls37{letter-spacing:149.027282px;}
.ls2b{letter-spacing:162.510648px;}
.ls2e{letter-spacing:178.402286px;}
.ls2f{letter-spacing:178.705130px;}
.ls30{letter-spacing:178.711187px;}
.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;}
}
.ws65{word-spacing:-38.937826px;}
.ws100{word-spacing:-36.071827px;}
.ws14c{word-spacing:-17.683534px;}
.ws45{word-spacing:-16.605662px;}
.wsb3{word-spacing:-15.359443px;}
.ws2e{word-spacing:-14.111859px;}
.ws9{word-spacing:-13.202127px;}
.wsd3{word-spacing:-6.623136px;}
.wsb1{word-spacing:-6.159917px;}
.wsb2{word-spacing:-6.106118px;}
.wsfd{word-spacing:-4.761158px;}
.wsd6{word-spacing:-3.301227px;}
.ws81{word-spacing:-3.275703px;}
.ws10d{word-spacing:-3.156152px;}
.wsd7{word-spacing:-3.102846px;}
.wsad{word-spacing:-3.096376px;}
.ws49{word-spacing:-2.857274px;}
.ws168{word-spacing:-2.770618px;}
.ws178{word-spacing:-2.716819px;}
.ws10b{word-spacing:-2.379069px;}
.ws117{word-spacing:-2.020415px;}
.wsd4{word-spacing:-1.960640px;}
.ws156{word-spacing:-1.909843px;}
.ws12a{word-spacing:-1.900864px;}
.ws16b{word-spacing:-1.856045px;}
.ws9c{word-spacing:-1.781313px;}
.ws31{word-spacing:-1.721537px;}
.ws9e{word-spacing:-1.601986px;}
.ws155{word-spacing:-1.587053px;}
.wsd9{word-spacing:-1.561351px;}
.wsda{word-spacing:-1.542210px;}
.ws16c{word-spacing:-1.425658px;}
.ws85{word-spacing:-1.362884px;}
.ws73{word-spacing:-1.303108px;}
.ws74{word-spacing:-1.243332px;}
.ws164{word-spacing:-1.156666px;}
.ws9a{word-spacing:-1.123781px;}
.wsef{word-spacing:-1.102867px;}
.ws2a{word-spacing:-1.004230px;}
.ws23{word-spacing:-0.944454px;}
.ws174{word-spacing:-0.941472px;}
.wse8{word-spacing:-0.824903px;}
.ws24{word-spacing:-0.765128px;}
.ws1c{word-spacing:-0.645576px;}
.ws63{word-spacing:-0.466250px;}
.ws8c{word-spacing:-0.346698px;}
.ws1e{word-spacing:-0.286923px;}
.ws43{word-spacing:-0.227147px;}
.wsa0{word-spacing:-0.167372px;}
.wseb{word-spacing:-0.066075px;}
.wsc3{word-spacing:-0.053798px;}
.ws118{word-spacing:-0.041843px;}
.wse9{word-spacing:-0.036206px;}
.wsf0{word-spacing:-0.026899px;}
.ws46{word-spacing:0.000000px;}
.wse1{word-spacing:0.011955px;}
.wsce{word-spacing:0.026899px;}
.ws104{word-spacing:0.080698px;}
.ws6e{word-spacing:0.131506px;}
.ws6d{word-spacing:0.167989px;}
.ws15b{word-spacing:0.242093px;}
.ws12b{word-spacing:0.251058px;}
.ws13e{word-spacing:0.310833px;}
.ws64{word-spacing:0.370609px;}
.ws98{word-spacing:0.430384px;}
.ws34{word-spacing:0.490160px;}
.ws42{word-spacing:0.609711px;}
.wsc6{word-spacing:0.618682px;}
.ws9f{word-spacing:0.669487px;}
.ws187{word-spacing:0.672480px;}
.wse2{word-spacing:0.729262px;}
.ws2{word-spacing:0.737439px;}
.wse0{word-spacing:0.789038px;}
.wsab{word-spacing:0.848814px;}
.wsaa{word-spacing:0.908589px;}
.ws2c{word-spacing:0.968365px;}
.ws184{word-spacing:0.995270px;}
.ws124{word-spacing:1.087916px;}
.wscc{word-spacing:1.102867px;}
.ws123{word-spacing:1.105077px;}
.ws6b{word-spacing:1.147692px;}
.ws160{word-spacing:1.318061px;}
.ws163{word-spacing:1.371859px;}
.ws26{word-spacing:1.386794px;}
.wse4{word-spacing:1.446570px;}
.ws103{word-spacing:1.479456px;}
.ws48{word-spacing:1.566121px;}
.ws68{word-spacing:1.625896px;}
.ws67{word-spacing:1.685672px;}
.ws167{word-spacing:1.748448px;}
.ws16e{word-spacing:1.802246px;}
.ws137{word-spacing:1.805223px;}
.ws33{word-spacing:1.924774px;}
.ws181{word-spacing:1.963642px;}
.wsdd{word-spacing:1.984550px;}
.ws3c{word-spacing:2.104101px;}
.ws17d{word-spacing:2.178835px;}
.wsde{word-spacing:2.283428px;}
.ws177{word-spacing:2.286432px;}
.ws6a{word-spacing:2.343204px;}
.ws175{word-spacing:2.394029px;}
.wsa8{word-spacing:2.402979px;}
.ws35{word-spacing:2.462755px;}
.ws183{word-spacing:2.609222px;}
.ws15e{word-spacing:2.663021px;}
.ws162{word-spacing:2.716819px;}
.ws95{word-spacing:2.798858px;}
.ws12{word-spacing:2.816633px;}
.ws97{word-spacing:2.821408px;}
.ws1b{word-spacing:2.881184px;}
.ws8b{word-spacing:2.940960px;}
.ws4c{word-spacing:3.000735px;}
.wsb9{word-spacing:3.039610px;}
.ws75{word-spacing:3.059638px;}
.ws77{word-spacing:3.060511px;}
.ws16d{word-spacing:3.061069px;}
.wsb8{word-spacing:3.064522px;}
.ws17f{word-spacing:3.066326px;}
.wsc5{word-spacing:3.066803px;}
.ws14b{word-spacing:3.067440px;}
.wsb4{word-spacing:3.070253px;}
.wsbf{word-spacing:3.070836px;}
.wsc4{word-spacing:3.086523px;}
.wsc2{word-spacing:3.087579px;}
.wsfb{word-spacing:3.090568px;}
.wsbe{word-spacing:3.091281px;}
.ws0{word-spacing:3.093408px;}
.wsa1{word-spacing:3.120286px;}
.wsee{word-spacing:3.147206px;}
.ws5f{word-spacing:3.180062px;}
.ws91{word-spacing:3.292400px;}
.ws29{word-spacing:3.299613px;}
.wsdf{word-spacing:3.359389px;}
.wsca{word-spacing:3.416198px;}
.ws9b{word-spacing:3.419164px;}
.ws16{word-spacing:3.438301px;}
.ws13b{word-spacing:3.478940px;}
.wsfc{word-spacing:3.513036px;}
.wsf5{word-spacing:3.523795px;}
.wsa4{word-spacing:3.538716px;}
.ws88{word-spacing:3.545726px;}
.ws89{word-spacing:3.567892px;}
.ws8a{word-spacing:3.598491px;}
.wsac{word-spacing:3.658267px;}
.wscd{word-spacing:3.725879px;}
.wscb{word-spacing:3.738989px;}
.ws1d{word-spacing:3.777818px;}
.ws107{word-spacing:3.792787px;}
.wsa2{word-spacing:3.837594px;}
.ws18d{word-spacing:3.900384px;}
.ws12e{word-spacing:3.957145px;}
.ws154{word-spacing:4.007981px;}
.ws25{word-spacing:4.016920px;}
.ws19{word-spacing:4.076696px;}
.ws7e{word-spacing:4.136472px;}
.ws13{word-spacing:4.155610px;}
.ws9d{word-spacing:4.256023px;}
.ws128{word-spacing:4.315798px;}
.ws157{word-spacing:4.384570px;}
.ws86{word-spacing:4.435350px;}
.ws165{word-spacing:4.545965px;}
.ws4f{word-spacing:4.554901px;}
.ws14a{word-spacing:4.599763px;}
.ws126{word-spacing:4.614676px;}
.ws17e{word-spacing:4.653562px;}
.wsd0{word-spacing:4.734228px;}
.ws21{word-spacing:4.794003px;}
.ws1f{word-spacing:4.820005px;}
.ws11{word-spacing:4.825099px;}
.ws3e{word-spacing:4.913554px;}
.ws11c{word-spacing:4.973330px;}
.ws84{word-spacing:5.033106px;}
.wsa5{word-spacing:5.092881px;}
.ws18a{word-spacing:5.245344px;}
.ws14{word-spacing:5.255484px;}
.ws28{word-spacing:5.272208px;}
.ws188{word-spacing:5.299142px;}
.ws115{word-spacing:5.331984px;}
.ws108{word-spacing:5.352941px;}
.ws113{word-spacing:5.391759px;}
.ws153{word-spacing:5.406739px;}
.wsc8{word-spacing:5.568134px;}
.ws47{word-spacing:5.571086px;}
.ws15{word-spacing:5.590228px;}
.ws4{word-spacing:5.624884px;}
.wsc7{word-spacing:5.675731px;}
.wsa{word-spacing:5.684660px;}
.ws10c{word-spacing:5.690637px;}
.ws138{word-spacing:5.750413px;}
.ws182{word-spacing:5.837126px;}
.ws3a{word-spacing:5.869964px;}
.ws12d{word-spacing:5.929740px;}
.wsf2{word-spacing:5.944723px;}
.ws16f{word-spacing:5.998522px;}
.ws27{word-spacing:6.109066px;}
.ws53{word-spacing:6.168842px;}
.ws170{word-spacing:6.213715px;}
.ws36{word-spacing:6.228618px;}
.wsc9{word-spacing:6.267514px;}
.ws12f{word-spacing:6.348169px;}
.ws69{word-spacing:6.467720px;}
.ws14d{word-spacing:6.482707px;}
.wsa7{word-spacing:6.527496px;}
.ws60{word-spacing:6.587271px;}
.ws169{word-spacing:6.590304px;}
.wsf1{word-spacing:6.644102px;}
.ws6c{word-spacing:6.647047px;}
.wscf{word-spacing:6.706822px;}
.wsdc{word-spacing:6.766598px;}
.ws11e{word-spacing:6.945925px;}
.ws32{word-spacing:7.005700px;}
.ws44{word-spacing:7.185027px;}
.ws66{word-spacing:7.244803px;}
.ws30{word-spacing:7.304578px;}
.ws4a{word-spacing:7.347304px;}
.ws3d{word-spacing:7.364354px;}
.wsf3{word-spacing:7.397280px;}
.ws13d{word-spacing:7.424130px;}
.ws99{word-spacing:7.483905px;}
.ws17{word-spacing:7.503052px;}
.ws16a{word-spacing:7.504877px;}
.wsdb{word-spacing:7.543681px;}
.wse3{word-spacing:7.663232px;}
.ws15d{word-spacing:7.720070px;}
.ws70{word-spacing:7.723008px;}
.ws15a{word-spacing:7.773869px;}
.ws22{word-spacing:7.902334px;}
.ws133{word-spacing:7.962110px;}
.ws109{word-spacing:8.096659px;}
.ws18c{word-spacing:8.150458px;}
.ws55{word-spacing:8.201212px;}
.wsf8{word-spacing:8.204256px;}
.wsf6{word-spacing:8.258054px;}
.ws10a{word-spacing:8.365651px;}
.ws121{word-spacing:8.367892px;}
.ws120{word-spacing:8.373326px;}
.ws122{word-spacing:8.380539px;}
.ws7b{word-spacing:8.440315px;}
.ws79{word-spacing:8.441101px;}
.ws92{word-spacing:8.500090px;}
.ws166{word-spacing:8.527046px;}
.wse7{word-spacing:8.559866px;}
.ws10{word-spacing:8.602926px;}
.ws2b{word-spacing:8.619642px;}
.ws15f{word-spacing:8.634643px;}
.wsa9{word-spacing:8.679417px;}
.ws102{word-spacing:8.742240px;}
.ws14f{word-spacing:8.849837px;}
.ws116{word-spacing:8.858744px;}
.ws127{word-spacing:8.918520px;}
.ws106{word-spacing:8.957434px;}
.wsa6{word-spacing:9.038071px;}
.wsd1{word-spacing:9.097846px;}
.ws11a{word-spacing:9.157622px;}
.ws11d{word-spacing:9.217398px;}
.ws139{word-spacing:9.277173px;}
.ws13a{word-spacing:9.396724px;}
.ws40{word-spacing:9.456500px;}
.ws105{word-spacing:9.603014px;}
.ws93{word-spacing:9.635827px;}
.ws185{word-spacing:9.656813px;}
.wsf9{word-spacing:9.710611px;}
.ws3f{word-spacing:9.755378px;}
.ws12c{word-spacing:9.815154px;}
.ws152{word-spacing:9.872006px;}
.ws78{word-spacing:9.874929px;}
.ws130{word-spacing:9.934705px;}
.ws17c{word-spacing:9.979603px;}
.ws41{word-spacing:9.994480px;}
.ws129{word-spacing:10.054256px;}
.ws5c{word-spacing:10.143635px;}
.ws71{word-spacing:10.172884px;}
.ws5e{word-spacing:10.173807px;}
.ws37{word-spacing:10.293358px;}
.ws39{word-spacing:10.353134px;}
.ws159{word-spacing:10.517587px;}
.ws7c{word-spacing:10.592236px;}
.ws189{word-spacing:10.732781px;}
.ws15c{word-spacing:10.786579px;}
.ws62{word-spacing:10.831339px;}
.wsea{word-spacing:10.902393px;}
.ws151{word-spacing:10.947974px;}
.ws10f{word-spacing:10.950890px;}
.ws149{word-spacing:11.109370px;}
.ws94{word-spacing:11.309544px;}
.ws7{word-spacing:11.329943px;}
.wsa3{word-spacing:11.369319px;}
.ws186{word-spacing:11.432160px;}
.ws4e{word-spacing:11.548646px;}
.ws83{word-spacing:11.565892px;}
.wse6{word-spacing:11.608422px;}
.wsd{word-spacing:11.652733px;}
.ws110{word-spacing:11.727973px;}
.ws150{word-spacing:11.808749px;}
.ws13c{word-spacing:11.847524px;}
.ws176{word-spacing:11.916346px;}
.ws142{word-spacing:12.026851px;}
.ws135{word-spacing:12.112976px;}
.ws8d{word-spacing:12.146402px;}
.wsb{word-spacing:12.190717px;}
.ws90{word-spacing:12.265953px;}
.wsd2{word-spacing:12.385504px;}
.ws18b{word-spacing:12.454330px;}
.wse{word-spacing:12.836298px;}
.ws131{word-spacing:12.983260px;}
.ws51{word-spacing:13.521241px;}
.ws5{word-spacing:13.858468px;}
.wsc{word-spacing:14.127460px;}
.ws173{word-spacing:14.229677px;}
.ws6{word-spacing:14.235057px;}
.ws38{word-spacing:14.417875px;}
.ws8{word-spacing:14.450250px;}
.ws7f{word-spacing:14.537426px;}
.ws1a{word-spacing:15.015631px;}
.wse5{word-spacing:15.135182px;}
.wsd5{word-spacing:15.242778px;}
.ws82{word-spacing:15.302554px;}
.ws146{word-spacing:15.314509px;}
.wsd8{word-spacing:15.422105px;}
.ws59{word-spacing:15.745891px;}
.ws158{word-spacing:15.789830px;}
.ws5b{word-spacing:15.792714px;}
.ws161{word-spacing:15.843629px;}
.ws56{word-spacing:15.868883px;}
.ws58{word-spacing:15.912265px;}
.ws80{word-spacing:16.031816px;}
.ws6f{word-spacing:16.091592px;}
.ws61{word-spacing:16.151367px;}
.ws179{word-spacing:16.596806px;}
.ws50{word-spacing:16.629572px;}
.ws132{word-spacing:16.868674px;}
.ws18{word-spacing:16.880672px;}
.ws72{word-spacing:17.095822px;}
.ws125{word-spacing:17.627571px;}
.ws147{word-spacing:17.944635px;}
.ws171{word-spacing:18.264557px;}
.wsec{word-spacing:18.302805px;}
.wsf{word-spacing:18.345254px;}
.wsb5{word-spacing:18.394873px;}
.ws14e{word-spacing:18.587347px;}
.ws143{word-spacing:19.498801px;}
.ws8e{word-spacing:19.546621px;}
.ws1{word-spacing:19.690214px;}
.ws180{word-spacing:19.717114px;}
.wsf4{word-spacing:20.120602px;}
.ws112{word-spacing:20.383480px;}
.ws172{word-spacing:20.793082px;}
.ws96{word-spacing:20.861684px;}
.ws76{word-spacing:21.100787px;}
.ws3b{word-spacing:21.339889px;}
.ws10e{word-spacing:21.578992px;}
.wsed{word-spacing:21.936936px;}
.ws114{word-spacing:21.950157px;}
.wsae{word-spacing:21.997421px;}
.ws87{word-spacing:22.356074px;}
.ws119{word-spacing:22.429733px;}
.ws4d{word-spacing:22.487581px;}
.ws20{word-spacing:22.714728px;}
.ws17b{word-spacing:23.167069px;}
.ws11f{word-spacing:23.485542px;}
.ws148{word-spacing:23.742868px;}
.ws141{word-spacing:24.161298px;}
.wsf7{word-spacing:24.478272px;}
.ws4b{word-spacing:25.045976px;}
.ws11b{word-spacing:25.683396px;}
.ws54{word-spacing:25.823059px;}
.wsfa{word-spacing:25.823232px;}
.ws7a{word-spacing:26.062162px;}
.ws5d{word-spacing:27.616327px;}
.ws7d{word-spacing:28.034756px;}
.ws134{word-spacing:28.393410px;}
.ws17a{word-spacing:28.835942px;}
.ws111{word-spacing:29.050942px;}
.ws136{word-spacing:29.409595px;}
.ws8f{word-spacing:29.588922px;}
.ws52{word-spacing:30.724658px;}
.ws3{word-spacing:31.504255px;}
.ws5a{word-spacing:32.757029px;}
.ws57{word-spacing:32.876580px;}
.ws140{word-spacing:34.861130px;}
.ws144{word-spacing:36.224014px;}
.ws145{word-spacing:38.033338px;}
.wsc1{word-spacing:45.378950px;}
.wsb7{word-spacing:45.432749px;}
.wsfe{word-spacing:48.327103px;}
.ws13f{word-spacing:51.384704px;}
.wsc0{word-spacing:56.353824px;}
.wsb6{word-spacing:56.407622px;}
.ws101{word-spacing:69.290561px;}
.wsff{word-spacing:69.319238px;}
.wsbb{word-spacing:73.031328px;}
.wsb0{word-spacing:78.786338px;}
.wsba{word-spacing:84.006202px;}
.wsbd{word-spacing:100.683706px;}
.wsbc{word-spacing:111.658579px;}
.ws2f{word-spacing:128.632632px;}
.ws2d{word-spacing:257.174405px;}
.wsaf{word-spacing:471.774309px;}
._1e{margin-left:-29.905688px;}
._5{margin-left:-28.220050px;}
._4a{margin-left:-27.030907px;}
._32{margin-left:-25.984627px;}
._48{margin-left:-24.131400px;}
._7{margin-left:-22.057196px;}
._8{margin-left:-19.767986px;}
._6{margin-left:-7.776794px;}
._25{margin-left:-5.702591px;}
._2{margin-left:-4.626662px;}
._4{margin-left:-3.066509px;}
._0{margin-left:-1.667750px;}
._3{width:1.452557px;}
._10{width:2.486666px;}
._1d{width:6.463630px;}
._a{width:8.834875px;}
._1a{width:9.922750px;}
._26{width:13.648436px;}
._12{width:16.115503px;}
._1c{width:17.252984px;}
._29{width:18.452851px;}
._2e{width:19.744013px;}
._9{width:20.867722px;}
._46{width:22.066362px;}
._c{width:23.085409px;}
._1{width:24.532070px;}
._f{width:25.942610px;}
._40{width:26.974716px;}
._14{width:28.465172px;}
._24{width:29.887800px;}
._e{width:31.071449px;}
._21{width:32.616324px;}
._16{width:33.755272px;}
._13{width:35.375222px;}
._b{width:36.660461px;}
._11{width:38.435711px;}
._15{width:39.792496px;}
._18{width:40.844482px;}
._23{width:42.428743px;}
._22{width:44.413271px;}
._1f{width:46.236439px;}
._19{width:47.265095px;}
._1b{width:49.075768px;}
._20{width:51.944996px;}
._44{width:55.463491px;}
._d{width:61.580855px;}
._17{width:66.649794px;}
._47{width:67.857264px;}
._49{width:70.451524px;}
._3c{width:71.713267px;}
._2a{width:91.188288px;}
._45{width:96.142406px;}
._36{width:99.419443px;}
._41{width:102.649651px;}
._43{width:109.963930px;}
._39{width:112.707648px;}
._42{width:113.778618px;}
._2b{width:127.902449px;}
._2f{width:149.182963px;}
._2d{width:156.523472px;}
._34{width:161.072410px;}
._30{width:177.104333px;}
._31{width:184.330030px;}
._37{width:206.077560px;}
._35{width:231.978701px;}
._3e{width:285.561907px;}
._3a{width:309.771187px;}
._33{width:355.930214px;}
._2c{width:419.890617px;}
._38{width:441.469670px;}
._3d{width:443.729203px;}
._3f{width:486.767923px;}
._3b{width:514.420301px;}
._28{width:569.402266px;}
._27{width:608.298509px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs6{font-size:36.205606px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:48.273939px;}
.fs0{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs7{font-size:66.075110px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yeb{bottom:5.522360px;}
.yee{bottom:28.764123px;}
.yef{bottom:62.304096px;}
.yed{bottom:67.528155px;}
.yec{bottom:83.047396px;}
.yf0{bottom:97.281064px;}
.yf1{bottom:132.259546px;}
.y41{bottom:132.439500px;}
.y40{bottom:135.657000px;}
.yf2{bottom:167.160803px;}
.y3f{bottom:177.499500px;}
.ye9{bottom:179.047430px;}
.y75{bottom:180.487500px;}
.yd5{bottom:180.489000px;}
.y34{bottom:181.759500px;}
.yea{bottom:192.787462px;}
.ye7{bottom:194.727000px;}
.y3e{bottom:195.432000px;}
.y173{bottom:196.179000px;}
.ya8{bottom:198.420000px;}
.y74{bottom:198.421500px;}
.y33{bottom:200.175000px;}
.yf3{bottom:202.137770px;}
.y32{bottom:210.660000px;}
.y172{bottom:211.870500px;}
.y3d{bottom:213.364500px;}
.ya7{bottom:216.352500px;}
.yd4{bottom:216.354000px;}
.y73{bottom:217.131000px;}
.y171{bottom:227.560500px;}
.y31{bottom:229.077000px;}
.y3c{bottom:231.298500px;}
.ya6{bottom:234.286500px;}
.y72{bottom:235.063500px;}
.yf4{bottom:237.116252px;}
.y170{bottom:243.252000px;}
.y3b{bottom:249.231000px;}
.ya5{bottom:252.219000px;}
.y71{bottom:252.996000px;}
.y16f{bottom:258.943500px;}
.y117{bottom:261.744000px;}
.y116{bottom:264.109500px;}
.y3a{bottom:267.163500px;}
.ya4{bottom:270.151500px;}
.y70{bottom:270.928500px;}
.y14e{bottom:271.012500px;}
.yf5{bottom:272.093220px;}
.y16e{bottom:274.635000px;}
.y115{bottom:276.648000px;}
.y114{bottom:279.801000px;}
.y39{bottom:285.096000px;}
.ya3{bottom:288.084000px;}
.yd3{bottom:288.085500px;}
.y6f{bottom:288.861000px;}
.y14d{bottom:288.945000px;}
.y30{bottom:289.272000px;}
.y16d{bottom:290.326500px;}
.y113{bottom:295.492500px;}
.y38{bottom:303.028500px;}
.ya2{bottom:306.016500px;}
.yd2{bottom:306.018000px;}
.y6e{bottom:306.793500px;}
.y14c{bottom:306.877500px;}
.yf6{bottom:307.071702px;}
.y2f{bottom:307.204500px;}
.y112{bottom:311.184000px;}
.yf8{bottom:315.776953px;}
.ye6{bottom:320.272500px;}
.y37{bottom:320.961000px;}
.y16c{bottom:321.708000px;}
.ya1{bottom:323.949000px;}
.yd1{bottom:323.950500px;}
.y6d{bottom:324.727500px;}
.y14b{bottom:324.810000px;}
.y2e{bottom:325.137000px;}
.y111{bottom:326.875500px;}
.y16b{bottom:337.399500px;}
.y36{bottom:338.895000px;}
.yd0{bottom:341.883000px;}
.yf7{bottom:341.972959px;}
.y125{bottom:341.976000px;}
.ya0{bottom:342.381000px;}
.y110{bottom:342.565500px;}
.y6c{bottom:342.660000px;}
.y14a{bottom:342.742500px;}
.y2d{bottom:343.069500px;}
.ye5{bottom:344.505000px;}
.y16a{bottom:353.091000px;}
.y35{bottom:356.827500px;}
.y10f{bottom:358.257000px;}
.ye4{bottom:358.761000px;}
.ycf{bottom:359.815500px;}
.y9f{bottom:360.313500px;}
.y6b{bottom:360.592500px;}
.y149{bottom:360.676500px;}
.y2c{bottom:361.003500px;}
.ye3{bottom:362.439000px;}
.y169{bottom:368.781000px;}
.y10e{bottom:373.948500px;}
.ye2{bottom:376.693500px;}
.yce{bottom:377.748000px;}
.y9e{bottom:378.246000px;}
.y6a{bottom:378.525000px;}
.y148{bottom:378.609000px;}
.y2b{bottom:378.936000px;}
.ye1{bottom:380.371500px;}
.y168{bottom:384.472500px;}
.ycd{bottom:395.682000px;}
.y9d{bottom:396.178500px;}
.y69{bottom:396.457500px;}
.y147{bottom:396.541500px;}
.y2a{bottom:396.868500px;}
.y124{bottom:397.083000px;}
.ye0{bottom:399.819000px;}
.y167{bottom:400.164000px;}
.y10d{bottom:408.951000px;}
.y9c{bottom:414.111000px;}
.y68{bottom:414.390000px;}
.y146{bottom:414.474000px;}
.y29{bottom:414.801000px;}
.y123{bottom:415.015500px;}
.y166{bottom:415.855500px;}
.ydf{bottom:417.751500px;}
.y10c{bottom:424.641000px;}
.y165{bottom:431.547000px;}
.y9b{bottom:432.045000px;}
.y145{bottom:432.406500px;}
.y28{bottom:432.733500px;}
.y122{bottom:432.948000px;}
.y67{bottom:433.099500px;}
.yde{bottom:435.684000px;}
.y10b{bottom:440.332500px;}
.y164{bottom:447.237000px;}
.ydd{bottom:449.940000px;}
.y9a{bottom:449.977500px;}
.y144{bottom:450.339000px;}
.y27{bottom:450.667500px;}
.y121{bottom:450.880500px;}
.y66{bottom:451.033500px;}
.ydc{bottom:453.618000px;}
.y10a{bottom:456.024000px;}
.y163{bottom:462.928500px;}
.y143{bottom:468.273000px;}
.y99{bottom:468.408000px;}
.y26{bottom:468.600000px;}
.y120{bottom:468.814500px;}
.y65{bottom:468.966000px;}
.ydb{bottom:471.550500px;}
.y109{bottom:471.715500px;}
.y1ba{bottom:477.126000px;}
.y142{bottom:486.205500px;}
.y98{bottom:486.340500px;}
.y25{bottom:486.532500px;}
.y11f{bottom:486.747000px;}
.y64{bottom:486.898500px;}
.yda{bottom:490.590000px;}
.y1b9{bottom:492.816000px;}
.y108{bottom:494.908500px;}
.y19b{bottom:495.058500px;}
.y162{bottom:495.627000px;}
.y141{bottom:504.138000px;}
.y97{bottom:504.273000px;}
.y24{bottom:504.465000px;}
.y11e{bottom:504.679500px;}
.y63{bottom:505.608000px;}
.y1b8{bottom:508.507500px;}
.yd9{bottom:508.522500px;}
.ycc{bottom:508.705500px;}
.y107{bottom:510.600000px;}
.y19a{bottom:510.750000px;}
.y1b7{bottom:511.908000px;}
.y140{bottom:522.070500px;}
.y96{bottom:522.207000px;}
.y23{bottom:522.397500px;}
.y62{bottom:523.540500px;}
.y11d{bottom:523.630500px;}
.y1b6{bottom:524.199000px;}
.y106{bottom:526.291500px;}
.y199{bottom:526.441500px;}
.yd8{bottom:526.456500px;}
.ycb{bottom:526.638000px;}
.y1b5{bottom:539.890500px;}
.y13f{bottom:540.003000px;}
.y95{bottom:540.139500px;}
.y22{bottom:540.330000px;}
.y61{bottom:541.473000px;}
.y11c{bottom:541.563000px;}
.y105{bottom:541.983000px;}
.y198{bottom:542.131500px;}
.yd7{bottom:544.389000px;}
.yca{bottom:544.570500px;}
.y161{bottom:547.153500px;}
.y1b4{bottom:555.580500px;}
.y104{bottom:557.673000px;}
.y197{bottom:557.823000px;}
.y94{bottom:558.072000px;}
.y21{bottom:558.264000px;}
.y13e{bottom:558.796500px;}
.y60{bottom:559.407000px;}
.y11b{bottom:559.495500px;}
.yd6{bottom:562.321500px;}
.yc9{bottom:562.504500px;}
.y160{bottom:565.086000px;}
.y1b3{bottom:571.272000px;}
.y196{bottom:573.514500px;}
.y11a{bottom:573.750000px;}
.y93{bottom:576.004500px;}
.y20{bottom:576.196500px;}
.y13d{bottom:576.729000px;}
.y5f{bottom:577.339500px;}
.y119{bottom:577.428000px;}
.yc8{bottom:580.437000px;}
.y103{bottom:580.867500px;}
.y15f{bottom:583.020000px;}
.y1b2{bottom:586.963500px;}
.y195{bottom:589.206000px;}
.y92{bottom:593.937000px;}
.y1f{bottom:594.129000px;}
.y13c{bottom:594.661500px;}
.y5e{bottom:595.272000px;}
.y118{bottom:595.360500px;}
.yc7{bottom:598.369500px;}
.y102{bottom:600.217500px;}
.y15e{bottom:600.952500px;}
.y1b1{bottom:602.655000px;}
.y194{bottom:604.896000px;}
.y91{bottom:611.869500px;}
.y13b{bottom:612.594000px;}
.y5d{bottom:613.204500px;}
.y1b0{bottom:618.346500px;}
.y15d{bottom:618.885000px;}
.y193{bottom:620.587500px;}
.y90{bottom:629.803500px;}
.y13a{bottom:630.528000px;}
.y5c{bottom:631.137000px;}
.y1af{bottom:634.036500px;}
.y192{bottom:636.279000px;}
.y15c{bottom:636.817500px;}
.y1e{bottom:638.961000px;}
.y101{bottom:646.543500px;}
.y8f{bottom:647.736000px;}
.y139{bottom:648.460500px;}
.y5b{bottom:649.069500px;}
.yc6{bottom:649.552500px;}
.y1ae{bottom:649.728000px;}
.y191{bottom:651.970500px;}
.y1d{bottom:653.157000px;}
.y15b{bottom:654.750000px;}
.y100{bottom:662.235000px;}
.yc5{bottom:665.244000px;}
.y1ad{bottom:665.419500px;}
.y8e{bottom:665.668500px;}
.y138{bottom:666.393000px;}
.y190{bottom:667.662000px;}
.y15a{bottom:672.682500px;}
.yff{bottom:677.926500px;}
.yc4{bottom:680.934000px;}
.y1ac{bottom:681.111000px;}
.y18f{bottom:683.352000px;}
.y8d{bottom:683.601000px;}
.y137{bottom:684.325500px;}
.y5a{bottom:684.787500px;}
.y159{bottom:690.616500px;}
.yfe{bottom:693.618000px;}
.yc3{bottom:696.625500px;}
.y1ab{bottom:696.801000px;}
.y18e{bottom:699.043500px;}
.y8c{bottom:701.533500px;}
.y1c{bottom:703.078500px;}
.yfd{bottom:709.309500px;}
.yc2{bottom:712.317000px;}
.y1aa{bottom:712.492500px;}
.y18d{bottom:714.735000px;}
.y1b{bottom:717.276000px;}
.y8b{bottom:719.965500px;}
.y136{bottom:720.126000px;}
.yfc{bottom:724.999500px;}
.y158{bottom:725.899500px;}
.yc1{bottom:728.008500px;}
.y1a9{bottom:728.184000px;}
.y18c{bottom:730.426500px;}
.y1a{bottom:731.472000px;}
.y8a{bottom:737.898000px;}
.y59{bottom:738.615000px;}
.yfb{bottom:740.691000px;}
.yc0{bottom:743.700000px;}
.y1a8{bottom:743.875500px;}
.y19{bottom:745.669500px;}
.y18b{bottom:746.116500px;}
.y89{bottom:755.830500px;}
.yfa{bottom:756.382500px;}
.y58{bottom:756.549000px;}
.y1a7{bottom:759.567000px;}
.y18{bottom:759.865500px;}
.y18a{bottom:761.808000px;}
.yf9{bottom:772.074000px;}
.y88{bottom:773.763000px;}
.y17{bottom:774.063000px;}
.y135{bottom:774.397500px;}
.y57{bottom:774.481500px;}
.y1a6{bottom:775.257000px;}
.y157{bottom:777.426000px;}
.y189{bottom:777.499500px;}
.ybf{bottom:777.954000px;}
.y16{bottom:788.259000px;}
.y1a5{bottom:790.948500px;}
.y87{bottom:791.695500px;}
.y134{bottom:792.330000px;}
.y56{bottom:792.414000px;}
.y188{bottom:793.191000px;}
.ybe{bottom:793.645500px;}
.y156{bottom:795.702000px;}
.ye8{bottom:798.598500px;}
.y15{bottom:802.456500px;}
.y1a4{bottom:806.640000px;}
.y187{bottom:808.882500px;}
.y86{bottom:809.628000px;}
.y133{bottom:810.262500px;}
.y55{bottom:810.346500px;}
.y155{bottom:813.976500px;}
.y14{bottom:816.652500px;}
.ybd{bottom:816.840000px;}
.y1a3{bottom:822.331500px;}
.y186{bottom:824.572500px;}
.y85{bottom:827.562000px;}
.y132{bottom:828.196500px;}
.y54{bottom:828.279000px;}
.y13{bottom:830.850000px;}
.y154{bottom:831.910500px;}
.y1a2{bottom:838.021500px;}
.ybc{bottom:840.033000px;}
.y185{bottom:840.264000px;}
.y12{bottom:845.046000px;}
.y84{bottom:845.494500px;}
.y131{bottom:846.129000px;}
.y53{bottom:846.211500px;}
.y153{bottom:849.843000px;}
.y1a1{bottom:853.713000px;}
.ybb{bottom:855.724500px;}
.y184{bottom:855.955500px;}
.y83{bottom:863.925000px;}
.y130{bottom:864.061500px;}
.y52{bottom:864.145500px;}
.y152{bottom:867.775500px;}
.y1a0{bottom:869.404500px;}
.yba{bottom:871.416000px;}
.y183{bottom:871.647000px;}
.y11{bottom:874.486500px;}
.y82{bottom:881.857500px;}
.y12f{bottom:881.994000px;}
.y51{bottom:882.078000px;}
.yb9{bottom:887.107500px;}
.y182{bottom:887.337000px;}
.y81{bottom:899.790000px;}
.y12e{bottom:899.926500px;}
.y50{bottom:900.010500px;}
.y181{bottom:903.028500px;}
.y151{bottom:903.058500px;}
.y10{bottom:905.569500px;}
.yb8{bottom:910.302000px;}
.y80{bottom:917.724000px;}
.y4f{bottom:917.943000px;}
.y12d{bottom:918.720000px;}
.yf{bottom:921.261000px;}
.yb7{bottom:933.495000px;}
.y180{bottom:934.411500px;}
.y7f{bottom:935.656500px;}
.y4e{bottom:935.875500px;}
.y12c{bottom:936.652500px;}
.ye{bottom:936.951000px;}
.y19f{bottom:950.101500px;}
.y17f{bottom:950.103000px;}
.yd{bottom:952.642500px;}
.y7e{bottom:953.589000px;}
.y4d{bottom:953.808000px;}
.y12b{bottom:954.585000px;}
.yb6{bottom:956.689500px;}
.y17e{bottom:965.793000px;}
.yc{bottom:968.334000px;}
.y7d{bottom:971.521500px;}
.y4c{bottom:971.742000px;}
.y12a{bottom:972.517500px;}
.yb5{bottom:979.884000px;}
.y17d{bottom:981.484500px;}
.y7c{bottom:989.454000px;}
.y4b{bottom:989.674500px;}
.y150{bottom:990.450000px;}
.y129{bottom:990.451500px;}
.yb{bottom:991.945500px;}
.yb4{bottom:995.575500px;}
.y17c{bottom:997.176000px;}
.y4a{bottom:1007.607000px;}
.y7b{bottom:1007.884500px;}
.y128{bottom:1008.384000px;}
.yb3{bottom:1011.265500px;}
.y19e{bottom:1012.866000px;}
.y17b{bottom:1012.867500px;}
.ya{bottom:1020.637500px;}
.y49{bottom:1025.539500px;}
.y7a{bottom:1025.818500px;}
.y127{bottom:1026.316500px;}
.yb2{bottom:1026.957000px;}
.y17a{bottom:1028.557500px;}
.y9{bottom:1036.329000px;}
.yb1{bottom:1042.648500px;}
.y48{bottom:1043.472000px;}
.y79{bottom:1043.751000px;}
.y126{bottom:1044.249000px;}
.yb0{bottom:1046.047500px;}
.y8{bottom:1052.020500px;}
.yaf{bottom:1059.208500px;}
.y179{bottom:1059.940500px;}
.y78{bottom:1061.683500px;}
.y47{bottom:1062.181500px;}
.y7{bottom:1067.712000px;}
.yae{bottom:1074.900000px;}
.y178{bottom:1075.632000px;}
.y77{bottom:1079.616000px;}
.y14f{bottom:1080.114000px;}
.y46{bottom:1080.115500px;}
.y6{bottom:1083.402000px;}
.yad{bottom:1090.590000px;}
.y19d{bottom:1091.322000px;}
.y177{bottom:1091.323500px;}
.y76{bottom:1098.046500px;}
.y45{bottom:1098.048000px;}
.yac{bottom:1106.281500px;}
.y5{bottom:1107.013500px;}
.y44{bottom:1115.980500px;}
.y176{bottom:1122.705000px;}
.yab{bottom:1129.476000px;}
.y43{bottom:1133.913000px;}
.y175{bottom:1138.396500px;}
.y4{bottom:1142.880000px;}
.y42{bottom:1151.845500px;}
.yaa{bottom:1152.670500px;}
.y19c{bottom:1154.086500px;}
.y174{bottom:1154.088000px;}
.ya9{bottom:1168.360500px;}
.y3{bottom:1169.778000px;}
.y2{bottom:1192.941000px;}
.y1{bottom:1208.632500px;}
.h16{height:24.474990px;}
.ha{height:25.249382px;}
.h8{height:34.191729px;}
.h7{height:35.865450px;}
.he{height:37.658880px;}
.h5{height:38.519654px;}
.h2{height:40.348800px;}
.h4{height:42.799330px;}
.h9{height:44.831700px;}
.h1d{height:47.099146px;}
.h6{height:48.103382px;}
.h17{height:49.556332px;}
.h1b{height:49.751146px;}
.h1f{height:49.810800px;}
.h21{height:49.892047px;}
.hd{height:49.898047px;}
.hf{height:51.108480px;}
.h1c{height:52.960800px;}
.h1a{height:53.944800px;}
.h12{height:54.272047px;}
.h1e{height:56.561146px;}
.h10{height:56.924047px;}
.h20{height:56.930047px;}
.hb{height:57.701700px;}
.h11{height:59.543700px;}
.h14{height:59.609700px;}
.hc{height:59.939700px;}
.h19{height:60.184642px;}
.h3{height:61.631275px;}
.h18{height:62.771354px;}
.h13{height:69.050047px;}
.h15{height:386.126100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:685.941660px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:30.328312px;}
.x3{left:81.000000px;}
.x7{left:82.992000px;}
.x8{left:93.702000px;}
.x6{left:95.944500px;}
.x21{left:113.440820px;}
.x1f{left:119.109000px;}
.xe{left:120.273000px;}
.x12{left:121.809000px;}
.x4{left:135.000000px;}
.x1{left:137.086500px;}
.x24{left:149.868410px;}
.x2d{left:152.178000px;}
.x30{left:156.184500px;}
.x2e{left:158.377500px;}
.x33{left:161.298000px;}
.x5{left:163.192500px;}
.x31{left:194.625000px;}
.xb{left:199.389000px;}
.x15{left:207.087000px;}
.x34{left:223.510500px;}
.x17{left:227.220000px;}
.x14{left:232.372500px;}
.x32{left:254.493000px;}
.x2f{left:258.747000px;}
.x16{left:268.597500px;}
.x13{left:269.719500px;}
.x20{left:281.410216px;}
.x10{left:283.755000px;}
.x23{left:291.858334px;}
.x2{left:318.844500px;}
.xd{left:338.310000px;}
.x29{left:369.125952px;}
.xf{left:417.291000px;}
.x27{left:419.216350px;}
.x18{left:433.857000px;}
.x11{left:440.769000px;}
.x28{left:452.238459px;}
.x26{left:473.214949px;}
.x9{left:475.521000px;}
.x2b{left:476.827878px;}
.xa{left:490.464000px;}
.x2c{left:508.563000px;}
.x1b{left:549.312000px;}
.x1a{left:594.855000px;}
.x1d{left:618.949500px;}
.x2a{left:630.580263px;}
.x19{left:651.501000px;}
.x25{left:676.399046px;}
.x1c{left:706.143000px;}
.x35{left:740.344500px;}
.x1e{left:755.658000px;}
.xc{left:835.669500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.vc{vertical-align:-12.986667pt;}
.v5{vertical-align:-7.973333pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:8.410667pt;}
.v3{vertical-align:11.440000pt;}
.v4{vertical-align:13.429333pt;}
.v6{vertical-align:19.285333pt;}
.v1{vertical-align:20.314667pt;}
.va{vertical-align:21.314834pt;}
.v9{vertical-align:23.173333pt;}
.v8{vertical-align:25.530667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000271pt;}
.ls2c{letter-spacing:0.000477pt;}
.ls19{letter-spacing:0.000495pt;}
.ls1c{letter-spacing:0.000792pt;}
.ls20{letter-spacing:0.001249pt;}
.ls21{letter-spacing:0.001386pt;}
.ls29{letter-spacing:0.002079pt;}
.ls14{letter-spacing:0.002906pt;}
.ls44{letter-spacing:0.003099pt;}
.ls23{letter-spacing:5.163764pt;}
.ls1e{letter-spacing:5.169097pt;}
.lsa{letter-spacing:5.792271pt;}
.ls12{letter-spacing:7.490079pt;}
.ls40{letter-spacing:8.855412pt;}
.ls13{letter-spacing:11.996745pt;}
.ls16{letter-spacing:12.002079pt;}
.ls11{letter-spacing:13.285605pt;}
.ls17{letter-spacing:14.656576pt;}
.ls22{letter-spacing:14.692439pt;}
.ls3d{letter-spacing:14.757812pt;}
.ls24{letter-spacing:16.308695pt;}
.ls34{letter-spacing:16.372695pt;}
.ls1f{letter-spacing:16.705089pt;}
.ls3f{letter-spacing:16.719651pt;}
.ls26{letter-spacing:17.637605pt;}
.ls1{letter-spacing:17.708052pt;}
.ls0{letter-spacing:17.711527pt;}
.ls15{letter-spacing:17.792271pt;}
.ls10{letter-spacing:18.210245pt;}
.ls2d{letter-spacing:18.993690pt;}
.ls27{letter-spacing:19.184271pt;}
.ls1d{letter-spacing:19.243459pt;}
.ls1b{letter-spacing:19.355764pt;}
.lsc{letter-spacing:19.410820pt;}
.ls41{letter-spacing:19.453487pt;}
.ls5{letter-spacing:20.704271pt;}
.lsf{letter-spacing:21.024576pt;}
.ls42{letter-spacing:21.062586pt;}
.ls35{letter-spacing:21.066028pt;}
.ls1a{letter-spacing:21.232435pt;}
.ls32{letter-spacing:21.594028pt;}
.ls31{letter-spacing:21.599362pt;}
.ls25{letter-spacing:21.616576pt;}
.ls4{letter-spacing:22.037605pt;}
.ls3e{letter-spacing:22.512271pt;}
.ls3{letter-spacing:22.690820pt;}
.lse{letter-spacing:22.714938pt;}
.ls6{letter-spacing:23.080153pt;}
.ls3a{letter-spacing:23.499145pt;}
.lsd{letter-spacing:23.733605pt;}
.ls3c{letter-spacing:24.859680pt;}
.lsb{letter-spacing:25.050938pt;}
.ls9{letter-spacing:26.525487pt;}
.ls8{letter-spacing:28.053605pt;}
.ls7{letter-spacing:29.616271pt;}
.ls33{letter-spacing:31.711362pt;}
.ls43{letter-spacing:45.701600pt;}
.ls36{letter-spacing:113.247362pt;}
.ls28{letter-spacing:114.944576pt;}
.ls18{letter-spacing:118.689097pt;}
.ls39{letter-spacing:119.989909pt;}
.ls2a{letter-spacing:121.408576pt;}
.ls38{letter-spacing:132.463362pt;}
.ls37{letter-spacing:132.468695pt;}
.ls2b{letter-spacing:144.453909pt;}
.ls2e{letter-spacing:158.579810pt;}
.ls2f{letter-spacing:158.849005pt;}
.ls30{letter-spacing:158.854389pt;}
.ws65{word-spacing:-34.611401pt;}
.ws100{word-spacing:-32.063846pt;}
.ws14c{word-spacing:-15.718697pt;}
.ws45{word-spacing:-14.760588pt;}
.wsb3{word-spacing:-13.652838pt;}
.ws2e{word-spacing:-12.543875pt;}
.ws9{word-spacing:-11.735224pt;}
.wsd3{word-spacing:-5.887232pt;}
.wsb1{word-spacing:-5.475482pt;}
.wsb2{word-spacing:-5.427661pt;}
.wsfd{word-spacing:-4.232141pt;}
.wsd6{word-spacing:-2.934424pt;}
.ws81{word-spacing:-2.911736pt;}
.ws10d{word-spacing:-2.805468pt;}
.wsd7{word-spacing:-2.758086pt;}
.wsad{word-spacing:-2.752334pt;}
.ws49{word-spacing:-2.539799pt;}
.ws168{word-spacing:-2.462771pt;}
.ws178{word-spacing:-2.414950pt;}
.ws10b{word-spacing:-2.114728pt;}
.ws117{word-spacing:-1.795925pt;}
.wsd4{word-spacing:-1.742791pt;}
.ws156{word-spacing:-1.697638pt;}
.ws12a{word-spacing:-1.689657pt;}
.ws16b{word-spacing:-1.649818pt;}
.ws9c{word-spacing:-1.583389pt;}
.ws31{word-spacing:-1.530255pt;}
.ws9e{word-spacing:-1.423988pt;}
.ws155{word-spacing:-1.410714pt;}
.wsd9{word-spacing:-1.387867pt;}
.wsda{word-spacing:-1.370854pt;}
.ws16c{word-spacing:-1.267251pt;}
.ws85{word-spacing:-1.211452pt;}
.ws73{word-spacing:-1.158318pt;}
.ws74{word-spacing:-1.105184pt;}
.ws164{word-spacing:-1.028147pt;}
.ws9a{word-spacing:-0.998917pt;}
.wsef{word-spacing:-0.980326pt;}
.ws2a{word-spacing:-0.892649pt;}
.ws23{word-spacing:-0.839515pt;}
.ws174{word-spacing:-0.836864pt;}
.wse8{word-spacing:-0.733247pt;}
.ws24{word-spacing:-0.680113pt;}
.ws1c{word-spacing:-0.573846pt;}
.ws63{word-spacing:-0.414444pt;}
.ws8c{word-spacing:-0.308176pt;}
.ws1e{word-spacing:-0.255043pt;}
.ws43{word-spacing:-0.201909pt;}
.wsa0{word-spacing:-0.148775pt;}
.wseb{word-spacing:-0.058733pt;}
.wsc3{word-spacing:-0.047821pt;}
.ws118{word-spacing:-0.037194pt;}
.wse9{word-spacing:-0.032183pt;}
.wsf0{word-spacing:-0.023910pt;}
.ws46{word-spacing:0.000000pt;}
.wse1{word-spacing:0.010627pt;}
.wsce{word-spacing:0.023910pt;}
.ws104{word-spacing:0.071731pt;}
.ws6e{word-spacing:0.116895pt;}
.ws6d{word-spacing:0.149324pt;}
.ws15b{word-spacing:0.215194pt;}
.ws12b{word-spacing:0.223162pt;}
.ws13e{word-spacing:0.276296pt;}
.ws64{word-spacing:0.329430pt;}
.ws98{word-spacing:0.382564pt;}
.ws34{word-spacing:0.435698pt;}
.ws42{word-spacing:0.541965pt;}
.wsc6{word-spacing:0.549939pt;}
.ws9f{word-spacing:0.595099pt;}
.ws187{word-spacing:0.597760pt;}
.wse2{word-spacing:0.648233pt;}
.ws2{word-spacing:0.655502pt;}
.wse0{word-spacing:0.701367pt;}
.wsab{word-spacing:0.754501pt;}
.wsaa{word-spacing:0.807635pt;}
.ws2c{word-spacing:0.860769pt;}
.ws184{word-spacing:0.884685pt;}
.ws124{word-spacing:0.967036pt;}
.wscc{word-spacing:0.980326pt;}
.ws123{word-spacing:0.982290pt;}
.ws6b{word-spacing:1.020170pt;}
.ws160{word-spacing:1.171610pt;}
.ws163{word-spacing:1.219430pt;}
.ws26{word-spacing:1.232706pt;}
.wse4{word-spacing:1.285840pt;}
.ws103{word-spacing:1.315072pt;}
.ws48{word-spacing:1.392107pt;}
.ws68{word-spacing:1.445241pt;}
.ws67{word-spacing:1.498375pt;}
.ws167{word-spacing:1.554176pt;}
.ws16e{word-spacing:1.601997pt;}
.ws137{word-spacing:1.604643pt;}
.ws33{word-spacing:1.710911pt;}
.ws181{word-spacing:1.745459pt;}
.wsdd{word-spacing:1.764044pt;}
.ws3c{word-spacing:1.870312pt;}
.ws17d{word-spacing:1.936742pt;}
.wsde{word-spacing:2.029714pt;}
.ws177{word-spacing:2.032384pt;}
.ws6a{word-spacing:2.082848pt;}
.ws175{word-spacing:2.128026pt;}
.wsa8{word-spacing:2.135981pt;}
.ws35{word-spacing:2.189115pt;}
.ws183{word-spacing:2.319309pt;}
.ws15e{word-spacing:2.367130pt;}
.ws162{word-spacing:2.414950pt;}
.ws95{word-spacing:2.487874pt;}
.ws12{word-spacing:2.503674pt;}
.ws97{word-spacing:2.507919pt;}
.ws1b{word-spacing:2.561052pt;}
.ws8b{word-spacing:2.614186pt;}
.ws4c{word-spacing:2.667320pt;}
.wsb9{word-spacing:2.701875pt;}
.ws75{word-spacing:2.719679pt;}
.ws77{word-spacing:2.720454pt;}
.ws16d{word-spacing:2.720951pt;}
.wsb8{word-spacing:2.724019pt;}
.ws17f{word-spacing:2.725623pt;}
.wsc5{word-spacing:2.726047pt;}
.ws14b{word-spacing:2.726613pt;}
.wsb4{word-spacing:2.729114pt;}
.wsbf{word-spacing:2.729632pt;}
.wsc4{word-spacing:2.743576pt;}
.wsc2{word-spacing:2.744515pt;}
.wsfb{word-spacing:2.747172pt;}
.wsbe{word-spacing:2.747805pt;}
.ws0{word-spacing:2.749696pt;}
.wsa1{word-spacing:2.773588pt;}
.wsee{word-spacing:2.797517pt;}
.ws5f{word-spacing:2.826722pt;}
.ws91{word-spacing:2.926577pt;}
.ws29{word-spacing:2.932989pt;}
.wsdf{word-spacing:2.986123pt;}
.wsca{word-spacing:3.036621pt;}
.ws9b{word-spacing:3.039257pt;}
.ws16{word-spacing:3.056268pt;}
.ws13b{word-spacing:3.092391pt;}
.wsfc{word-spacing:3.122698pt;}
.wsf5{word-spacing:3.132262pt;}
.wsa4{word-spacing:3.145525pt;}
.ws88{word-spacing:3.151757pt;}
.ws89{word-spacing:3.171459pt;}
.ws8a{word-spacing:3.198659pt;}
.wsac{word-spacing:3.251793pt;}
.wscd{word-spacing:3.311892pt;}
.wscb{word-spacing:3.323546pt;}
.ws1d{word-spacing:3.358060pt;}
.ws107{word-spacing:3.371366pt;}
.wsa2{word-spacing:3.411194pt;}
.ws18d{word-spacing:3.467008pt;}
.ws12e{word-spacing:3.517462pt;}
.ws154{word-spacing:3.562650pt;}
.ws25{word-spacing:3.570596pt;}
.ws19{word-spacing:3.623730pt;}
.ws7e{word-spacing:3.676864pt;}
.ws13{word-spacing:3.693876pt;}
.ws9d{word-spacing:3.783131pt;}
.ws128{word-spacing:3.836265pt;}
.ws157{word-spacing:3.897395pt;}
.ws86{word-spacing:3.942533pt;}
.ws165{word-spacing:4.040858pt;}
.ws4f{word-spacing:4.048801pt;}
.ws14a{word-spacing:4.088678pt;}
.ws126{word-spacing:4.101935pt;}
.ws17e{word-spacing:4.136499pt;}
.wsd0{word-spacing:4.208202pt;}
.ws21{word-spacing:4.261336pt;}
.ws1f{word-spacing:4.284449pt;}
.ws11{word-spacing:4.288976pt;}
.ws3e{word-spacing:4.367604pt;}
.ws11c{word-spacing:4.420738pt;}
.ws84{word-spacing:4.473872pt;}
.wsa5{word-spacing:4.527005pt;}
.ws18a{word-spacing:4.662528pt;}
.ws14{word-spacing:4.671541pt;}
.ws28{word-spacing:4.686407pt;}
.ws188{word-spacing:4.710349pt;}
.ws115{word-spacing:4.739541pt;}
.ws108{word-spacing:4.758170pt;}
.ws113{word-spacing:4.792675pt;}
.ws153{word-spacing:4.805990pt;}
.wsc8{word-spacing:4.949453pt;}
.ws47{word-spacing:4.952076pt;}
.ws15{word-spacing:4.969092pt;}
.ws4{word-spacing:4.999897pt;}
.wsc7{word-spacing:5.045094pt;}
.wsa{word-spacing:5.053031pt;}
.ws10c{word-spacing:5.058344pt;}
.ws138{word-spacing:5.111478pt;}
.ws182{word-spacing:5.188557pt;}
.ws3a{word-spacing:5.217746pt;}
.ws12d{word-spacing:5.270880pt;}
.wsf2{word-spacing:5.284198pt;}
.ws16f{word-spacing:5.332019pt;}
.ws27{word-spacing:5.430281pt;}
.ws53{word-spacing:5.483415pt;}
.ws170{word-spacing:5.523302pt;}
.ws36{word-spacing:5.536549pt;}
.wsc9{word-spacing:5.571123pt;}
.ws12f{word-spacing:5.642817pt;}
.ws69{word-spacing:5.749084pt;}
.ws14d{word-spacing:5.762406pt;}
.wsa7{word-spacing:5.802218pt;}
.ws60{word-spacing:5.855352pt;}
.ws169{word-spacing:5.858048pt;}
.wsf1{word-spacing:5.905869pt;}
.ws6c{word-spacing:5.908486pt;}
.wscf{word-spacing:5.961620pt;}
.wsdc{word-spacing:6.014754pt;}
.ws11e{word-spacing:6.174155pt;}
.ws32{word-spacing:6.227289pt;}
.ws44{word-spacing:6.386691pt;}
.ws66{word-spacing:6.439825pt;}
.ws30{word-spacing:6.492959pt;}
.ws4a{word-spacing:6.530937pt;}
.ws3d{word-spacing:6.546092pt;}
.wsf3{word-spacing:6.575360pt;}
.ws13d{word-spacing:6.599226pt;}
.ws99{word-spacing:6.652360pt;}
.ws17{word-spacing:6.669380pt;}
.ws16a{word-spacing:6.671002pt;}
.wsdb{word-spacing:6.705494pt;}
.wse3{word-spacing:6.811762pt;}
.ws15d{word-spacing:6.862285pt;}
.ws70{word-spacing:6.864896pt;}
.ws15a{word-spacing:6.910106pt;}
.ws22{word-spacing:7.024297pt;}
.ws133{word-spacing:7.077431pt;}
.ws109{word-spacing:7.197030pt;}
.ws18c{word-spacing:7.244851pt;}
.ws55{word-spacing:7.289967pt;}
.wsf8{word-spacing:7.292672pt;}
.wsf6{word-spacing:7.340493pt;}
.ws10a{word-spacing:7.436134pt;}
.ws121{word-spacing:7.438126pt;}
.ws120{word-spacing:7.442956pt;}
.ws122{word-spacing:7.449368pt;}
.ws7b{word-spacing:7.502502pt;}
.ws79{word-spacing:7.503201pt;}
.ws92{word-spacing:7.555636pt;}
.ws166{word-spacing:7.579597pt;}
.wse7{word-spacing:7.608770pt;}
.ws10{word-spacing:7.647045pt;}
.ws2b{word-spacing:7.661904pt;}
.ws15f{word-spacing:7.675238pt;}
.wsa9{word-spacing:7.715037pt;}
.ws102{word-spacing:7.770880pt;}
.ws14f{word-spacing:7.866522pt;}
.ws116{word-spacing:7.874439pt;}
.ws127{word-spacing:7.927573pt;}
.ws106{word-spacing:7.962163pt;}
.wsa6{word-spacing:8.033841pt;}
.wsd1{word-spacing:8.086975pt;}
.ws11a{word-spacing:8.140108pt;}
.ws11d{word-spacing:8.193242pt;}
.ws139{word-spacing:8.246376pt;}
.ws13a{word-spacing:8.352644pt;}
.ws40{word-spacing:8.405778pt;}
.ws105{word-spacing:8.536013pt;}
.ws93{word-spacing:8.565179pt;}
.ws185{word-spacing:8.583834pt;}
.wsf9{word-spacing:8.631654pt;}
.ws3f{word-spacing:8.671447pt;}
.ws12c{word-spacing:8.724581pt;}
.ws152{word-spacing:8.775117pt;}
.ws78{word-spacing:8.777715pt;}
.ws130{word-spacing:8.830849pt;}
.ws17c{word-spacing:8.870758pt;}
.ws41{word-spacing:8.883983pt;}
.ws129{word-spacing:8.937116pt;}
.ws5c{word-spacing:9.016564pt;}
.ws71{word-spacing:9.042564pt;}
.ws5e{word-spacing:9.043384pt;}
.ws37{word-spacing:9.149652pt;}
.ws39{word-spacing:9.202786pt;}
.ws159{word-spacing:9.348966pt;}
.ws7c{word-spacing:9.415321pt;}
.ws189{word-spacing:9.540250pt;}
.ws15c{word-spacing:9.588070pt;}
.ws62{word-spacing:9.627857pt;}
.wsea{word-spacing:9.691016pt;}
.ws151{word-spacing:9.731533pt;}
.ws10f{word-spacing:9.734124pt;}
.ws149{word-spacing:9.874995pt;}
.ws94{word-spacing:10.052928pt;}
.ws7{word-spacing:10.071060pt;}
.wsa3{word-spacing:10.106061pt;}
.ws186{word-spacing:10.161920pt;}
.ws4e{word-spacing:10.265463pt;}
.ws83{word-spacing:10.280793pt;}
.wse6{word-spacing:10.318597pt;}
.wsd{word-spacing:10.357985pt;}
.ws110{word-spacing:10.424865pt;}
.ws150{word-spacing:10.496666pt;}
.ws13c{word-spacing:10.531132pt;}
.ws176{word-spacing:10.592307pt;}
.ws142{word-spacing:10.690534pt;}
.ws135{word-spacing:10.767090pt;}
.ws8d{word-spacing:10.796802pt;}
.wsb{word-spacing:10.836193pt;}
.ws90{word-spacing:10.903069pt;}
.wsd2{word-spacing:11.009337pt;}
.ws18b{word-spacing:11.070515pt;}
.wse{word-spacing:11.410043pt;}
.ws131{word-spacing:11.540676pt;}
.ws51{word-spacing:12.018881pt;}
.ws5{word-spacing:12.318638pt;}
.wsc{word-spacing:12.557742pt;}
.ws173{word-spacing:12.648602pt;}
.ws6{word-spacing:12.653384pt;}
.ws38{word-spacing:12.815889pt;}
.ws8{word-spacing:12.844667pt;}
.ws7f{word-spacing:12.922156pt;}
.ws1a{word-spacing:13.347227pt;}
.wse5{word-spacing:13.453495pt;}
.wsd5{word-spacing:13.549136pt;}
.ws82{word-spacing:13.602270pt;}
.ws146{word-spacing:13.612897pt;}
.wsd8{word-spacing:13.708538pt;}
.ws59{word-spacing:13.996348pt;}
.ws158{word-spacing:14.035405pt;}
.ws5b{word-spacing:14.037968pt;}
.ws161{word-spacing:14.083226pt;}
.ws56{word-spacing:14.105674pt;}
.ws58{word-spacing:14.144235pt;}
.ws80{word-spacing:14.250503pt;}
.ws6f{word-spacing:14.303637pt;}
.ws61{word-spacing:14.356771pt;}
.ws179{word-spacing:14.752717pt;}
.ws50{word-spacing:14.781842pt;}
.ws132{word-spacing:14.994377pt;}
.ws18{word-spacing:15.005042pt;}
.ws72{word-spacing:15.196286pt;}
.ws125{word-spacing:15.668952pt;}
.ws147{word-spacing:15.950787pt;}
.ws171{word-spacing:16.235162pt;}
.wsec{word-spacing:16.269160pt;}
.wsf{word-spacing:16.306893pt;}
.wsb5{word-spacing:16.350998pt;}
.ws14e{word-spacing:16.522086pt;}
.ws143{word-spacing:17.332267pt;}
.ws8e{word-spacing:17.374774pt;}
.ws1{word-spacing:17.502413pt;}
.ws180{word-spacing:17.526323pt;}
.wsf4{word-spacing:17.884979pt;}
.ws112{word-spacing:18.118649pt;}
.ws172{word-spacing:18.482739pt;}
.ws96{word-spacing:18.543719pt;}
.ws76{word-spacing:18.756255pt;}
.ws3b{word-spacing:18.968790pt;}
.ws10e{word-spacing:19.181326pt;}
.wsed{word-spacing:19.499499pt;}
.ws114{word-spacing:19.511250pt;}
.wsae{word-spacing:19.553263pt;}
.ws87{word-spacing:19.872066pt;}
.ws119{word-spacing:19.937541pt;}
.ws4d{word-spacing:19.988961pt;}
.ws20{word-spacing:20.190869pt;}
.ws17b{word-spacing:20.592951pt;}
.ws11f{word-spacing:20.876038pt;}
.ws148{word-spacing:21.104772pt;}
.ws141{word-spacing:21.476709pt;}
.wsf7{word-spacing:21.758464pt;}
.ws4b{word-spacing:22.263090pt;}
.ws11b{word-spacing:22.829686pt;}
.ws54{word-spacing:22.953830pt;}
.wsfa{word-spacing:22.953984pt;}
.ws7a{word-spacing:23.166366pt;}
.ws5d{word-spacing:24.547846pt;}
.ws7d{word-spacing:24.919783pt;}
.ws134{word-spacing:25.238587pt;}
.ws17a{word-spacing:25.631949pt;}
.ws111{word-spacing:25.823059pt;}
.ws136{word-spacing:26.141862pt;}
.ws8f{word-spacing:26.301264pt;}
.ws52{word-spacing:27.310807pt;}
.ws3{word-spacing:28.003782pt;}
.ws5a{word-spacing:29.117359pt;}
.ws57{word-spacing:29.223627pt;}
.ws140{word-spacing:30.987671pt;}
.ws144{word-spacing:32.199123pt;}
.ws145{word-spacing:33.807412pt;}
.wsc1{word-spacing:40.336845pt;}
.wsb7{word-spacing:40.384666pt;}
.wsfe{word-spacing:42.957425pt;}
.ws13f{word-spacing:45.675293pt;}
.wsc0{word-spacing:50.092288pt;}
.wsb6{word-spacing:50.140109pt;}
.ws101{word-spacing:61.591610pt;}
.wsff{word-spacing:61.617101pt;}
.wsbb{word-spacing:64.916736pt;}
.wsb0{word-spacing:70.032300pt;}
.wsba{word-spacing:74.672179pt;}
.wsbd{word-spacing:89.496627pt;}
.wsbc{word-spacing:99.252070pt;}
.ws2f{word-spacing:114.340117pt;}
.ws2d{word-spacing:228.599471pt;}
.wsaf{word-spacing:419.354941pt;}
._1e{margin-left:-26.582834pt;}
._5{margin-left:-25.084489pt;}
._4a{margin-left:-24.027473pt;}
._32{margin-left:-23.097446pt;}
._48{margin-left:-21.450133pt;}
._7{margin-left:-19.606397pt;}
._8{margin-left:-17.571543pt;}
._6{margin-left:-6.912706pt;}
._25{margin-left:-5.068970pt;}
._2{margin-left:-4.112589pt;}
._4{margin-left:-2.725786pt;}
._0{margin-left:-1.482445pt;}
._3{width:1.291162pt;}
._10{width:2.210370pt;}
._1d{width:5.745449pt;}
._a{width:7.853222pt;}
._1a{width:8.820222pt;}
._26{width:12.131943pt;}
._12{width:14.324892pt;}
._1c{width:15.335986pt;}
._29{width:16.402534pt;}
._2e{width:17.550234pt;}
._9{width:18.549086pt;}
._46{width:19.614544pt;}
._c{width:20.520363pt;}
._1{width:21.806285pt;}
._f{width:23.060098pt;}
._40{width:23.977525pt;}
._14{width:25.302375pt;}
._24{width:26.566933pt;}
._e{width:27.619066pt;}
._21{width:28.992288pt;}
._16{width:30.004686pt;}
._13{width:31.444642pt;}
._b{width:32.587077pt;}
._11{width:34.165076pt;}
._15{width:35.371107pt;}
._18{width:36.306206pt;}
._23{width:37.714438pt;}
._22{width:39.478463pt;}
._1f{width:41.099057pt;}
._19{width:42.013418pt;}
._1b{width:43.622905pt;}
._20{width:46.173330pt;}
._44{width:49.300881pt;}
._d{width:54.738538pt;}
._17{width:59.244261pt;}
._47{width:60.317568pt;}
._49{width:62.623577pt;}
._3c{width:63.745126pt;}
._2a{width:81.056256pt;}
._45{width:85.459917pt;}
._36{width:88.372838pt;}
._41{width:91.244134pt;}
._43{width:97.745715pt;}
._39{width:100.184576pt;}
._42{width:101.136550pt;}
._2b{width:113.691066pt;}
._2f{width:132.607078pt;}
._2d{width:139.131975pt;}
._34{width:143.175475pt;}
._30{width:157.426074pt;}
._31{width:163.848916pt;}
._37{width:183.180053pt;}
._35{width:206.203290pt;}
._3e{width:253.832806pt;}
._3a{width:275.352166pt;}
._33{width:316.382413pt;}
._2c{width:373.236104pt;}
._38{width:392.417485pt;}
._3d{width:394.425958pt;}
._3f{width:432.682598pt;}
._3b{width:457.262490pt;}
._28{width:506.135347pt;}
._27{width:540.709786pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:32.182761pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:42.910168pt;}
.fs0{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs7{font-size:58.733431pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:4.908765pt;}
.yee{bottom:25.568109pt;}
.yef{bottom:55.381419pt;}
.yed{bottom:60.025027pt;}
.yec{bottom:73.819907pt;}
.yf0{bottom:86.472057pt;}
.yf1{bottom:117.564041pt;}
.y41{bottom:117.724000pt;}
.y40{bottom:120.584000pt;}
.yf2{bottom:148.587380pt;}
.y3f{bottom:157.777333pt;}
.ye9{bottom:159.153271pt;}
.y75{bottom:160.433333pt;}
.yd5{bottom:160.434667pt;}
.y34{bottom:161.564000pt;}
.yea{bottom:171.366633pt;}
.ye7{bottom:173.090667pt;}
.y3e{bottom:173.717333pt;}
.y173{bottom:174.381333pt;}
.ya8{bottom:176.373333pt;}
.y74{bottom:176.374667pt;}
.y33{bottom:177.933333pt;}
.yf3{bottom:179.678018pt;}
.y32{bottom:187.253333pt;}
.y172{bottom:188.329333pt;}
.y3d{bottom:189.657333pt;}
.ya7{bottom:192.313333pt;}
.yd4{bottom:192.314667pt;}
.y73{bottom:193.005333pt;}
.y171{bottom:202.276000pt;}
.y31{bottom:203.624000pt;}
.y3c{bottom:205.598667pt;}
.ya6{bottom:208.254667pt;}
.y72{bottom:208.945333pt;}
.yf4{bottom:210.770002pt;}
.y170{bottom:216.224000pt;}
.y3b{bottom:221.538667pt;}
.ya5{bottom:224.194667pt;}
.y71{bottom:224.885333pt;}
.y16f{bottom:230.172000pt;}
.y117{bottom:232.661333pt;}
.y116{bottom:234.764000pt;}
.y3a{bottom:237.478667pt;}
.ya4{bottom:240.134667pt;}
.y70{bottom:240.825333pt;}
.y14e{bottom:240.900000pt;}
.yf5{bottom:241.860640pt;}
.y16e{bottom:244.120000pt;}
.y115{bottom:245.909333pt;}
.y114{bottom:248.712000pt;}
.y39{bottom:253.418667pt;}
.ya3{bottom:256.074667pt;}
.yd3{bottom:256.076000pt;}
.y6f{bottom:256.765333pt;}
.y14d{bottom:256.840000pt;}
.y30{bottom:257.130667pt;}
.y16d{bottom:258.068000pt;}
.y113{bottom:262.660000pt;}
.y38{bottom:269.358667pt;}
.ya2{bottom:272.014667pt;}
.yd2{bottom:272.016000pt;}
.y6e{bottom:272.705333pt;}
.y14c{bottom:272.780000pt;}
.yf6{bottom:272.952624pt;}
.y2f{bottom:273.070667pt;}
.y112{bottom:276.608000pt;}
.yf8{bottom:280.690625pt;}
.ye6{bottom:284.686667pt;}
.y37{bottom:285.298667pt;}
.y16c{bottom:285.962667pt;}
.ya1{bottom:287.954667pt;}
.yd1{bottom:287.956000pt;}
.y6d{bottom:288.646667pt;}
.y14b{bottom:288.720000pt;}
.y2e{bottom:289.010667pt;}
.y111{bottom:290.556000pt;}
.y16b{bottom:299.910667pt;}
.y36{bottom:301.240000pt;}
.yd0{bottom:303.896000pt;}
.yf7{bottom:303.975964pt;}
.y125{bottom:303.978667pt;}
.ya0{bottom:304.338667pt;}
.y110{bottom:304.502667pt;}
.y6c{bottom:304.586667pt;}
.y14a{bottom:304.660000pt;}
.y2d{bottom:304.950667pt;}
.ye5{bottom:306.226667pt;}
.y16a{bottom:313.858667pt;}
.y35{bottom:317.180000pt;}
.y10f{bottom:318.450667pt;}
.ye4{bottom:318.898667pt;}
.ycf{bottom:319.836000pt;}
.y9f{bottom:320.278667pt;}
.y6b{bottom:320.526667pt;}
.y149{bottom:320.601333pt;}
.y2c{bottom:320.892000pt;}
.ye3{bottom:322.168000pt;}
.y169{bottom:327.805333pt;}
.y10e{bottom:332.398667pt;}
.ye2{bottom:334.838667pt;}
.yce{bottom:335.776000pt;}
.y9e{bottom:336.218667pt;}
.y6a{bottom:336.466667pt;}
.y148{bottom:336.541333pt;}
.y2b{bottom:336.832000pt;}
.ye1{bottom:338.108000pt;}
.y168{bottom:341.753333pt;}
.ycd{bottom:351.717333pt;}
.y9d{bottom:352.158667pt;}
.y69{bottom:352.406667pt;}
.y147{bottom:352.481333pt;}
.y2a{bottom:352.772000pt;}
.y124{bottom:352.962667pt;}
.ye0{bottom:355.394667pt;}
.y167{bottom:355.701333pt;}
.y10d{bottom:363.512000pt;}
.y9c{bottom:368.098667pt;}
.y68{bottom:368.346667pt;}
.y146{bottom:368.421333pt;}
.y29{bottom:368.712000pt;}
.y123{bottom:368.902667pt;}
.y166{bottom:369.649333pt;}
.ydf{bottom:371.334667pt;}
.y10c{bottom:377.458667pt;}
.y165{bottom:383.597333pt;}
.y9b{bottom:384.040000pt;}
.y145{bottom:384.361333pt;}
.y28{bottom:384.652000pt;}
.y122{bottom:384.842667pt;}
.y67{bottom:384.977333pt;}
.yde{bottom:387.274667pt;}
.y10b{bottom:391.406667pt;}
.y164{bottom:397.544000pt;}
.ydd{bottom:399.946667pt;}
.y9a{bottom:399.980000pt;}
.y144{bottom:400.301333pt;}
.y27{bottom:400.593333pt;}
.y121{bottom:400.782667pt;}
.y66{bottom:400.918667pt;}
.ydc{bottom:403.216000pt;}
.y10a{bottom:405.354667pt;}
.y163{bottom:411.492000pt;}
.y143{bottom:416.242667pt;}
.y99{bottom:416.362667pt;}
.y26{bottom:416.533333pt;}
.y120{bottom:416.724000pt;}
.y65{bottom:416.858667pt;}
.ydb{bottom:419.156000pt;}
.y109{bottom:419.302667pt;}
.y1ba{bottom:424.112000pt;}
.y142{bottom:432.182667pt;}
.y98{bottom:432.302667pt;}
.y25{bottom:432.473333pt;}
.y11f{bottom:432.664000pt;}
.y64{bottom:432.798667pt;}
.yda{bottom:436.080000pt;}
.y1b9{bottom:438.058667pt;}
.y108{bottom:439.918667pt;}
.y19b{bottom:440.052000pt;}
.y162{bottom:440.557333pt;}
.y141{bottom:448.122667pt;}
.y97{bottom:448.242667pt;}
.y24{bottom:448.413333pt;}
.y11e{bottom:448.604000pt;}
.y63{bottom:449.429333pt;}
.y1b8{bottom:452.006667pt;}
.yd9{bottom:452.020000pt;}
.ycc{bottom:452.182667pt;}
.y107{bottom:453.866667pt;}
.y19a{bottom:454.000000pt;}
.y1b7{bottom:455.029333pt;}
.y140{bottom:464.062667pt;}
.y96{bottom:464.184000pt;}
.y23{bottom:464.353333pt;}
.y62{bottom:465.369333pt;}
.y11d{bottom:465.449333pt;}
.y1b6{bottom:465.954667pt;}
.y106{bottom:467.814667pt;}
.y199{bottom:467.948000pt;}
.yd8{bottom:467.961333pt;}
.ycb{bottom:468.122667pt;}
.y1b5{bottom:479.902667pt;}
.y13f{bottom:480.002667pt;}
.y95{bottom:480.124000pt;}
.y22{bottom:480.293333pt;}
.y61{bottom:481.309333pt;}
.y11c{bottom:481.389333pt;}
.y105{bottom:481.762667pt;}
.y198{bottom:481.894667pt;}
.yd7{bottom:483.901333pt;}
.yca{bottom:484.062667pt;}
.y161{bottom:486.358667pt;}
.y1b4{bottom:493.849333pt;}
.y104{bottom:495.709333pt;}
.y197{bottom:495.842667pt;}
.y94{bottom:496.064000pt;}
.y21{bottom:496.234667pt;}
.y13e{bottom:496.708000pt;}
.y60{bottom:497.250667pt;}
.y11b{bottom:497.329333pt;}
.yd6{bottom:499.841333pt;}
.yc9{bottom:500.004000pt;}
.y160{bottom:502.298667pt;}
.y1b3{bottom:507.797333pt;}
.y196{bottom:509.790667pt;}
.y11a{bottom:510.000000pt;}
.y93{bottom:512.004000pt;}
.y20{bottom:512.174667pt;}
.y13d{bottom:512.648000pt;}
.y5f{bottom:513.190667pt;}
.y119{bottom:513.269333pt;}
.yc8{bottom:515.944000pt;}
.y103{bottom:516.326667pt;}
.y15f{bottom:518.240000pt;}
.y1b2{bottom:521.745333pt;}
.y195{bottom:523.738667pt;}
.y92{bottom:527.944000pt;}
.y1f{bottom:528.114667pt;}
.y13c{bottom:528.588000pt;}
.y5e{bottom:529.130667pt;}
.y118{bottom:529.209333pt;}
.yc7{bottom:531.884000pt;}
.y102{bottom:533.526667pt;}
.y15e{bottom:534.180000pt;}
.y1b1{bottom:535.693333pt;}
.y194{bottom:537.685333pt;}
.y91{bottom:543.884000pt;}
.y13b{bottom:544.528000pt;}
.y5d{bottom:545.070667pt;}
.y1b0{bottom:549.641333pt;}
.y15d{bottom:550.120000pt;}
.y193{bottom:551.633333pt;}
.y90{bottom:559.825333pt;}
.y13a{bottom:560.469333pt;}
.y5c{bottom:561.010667pt;}
.y1af{bottom:563.588000pt;}
.y192{bottom:565.581333pt;}
.y15c{bottom:566.060000pt;}
.y1e{bottom:567.965333pt;}
.y101{bottom:574.705333pt;}
.y8f{bottom:575.765333pt;}
.y139{bottom:576.409333pt;}
.y5b{bottom:576.950667pt;}
.yc6{bottom:577.380000pt;}
.y1ae{bottom:577.536000pt;}
.y191{bottom:579.529333pt;}
.y1d{bottom:580.584000pt;}
.y15b{bottom:582.000000pt;}
.y100{bottom:588.653333pt;}
.yc5{bottom:591.328000pt;}
.y1ad{bottom:591.484000pt;}
.y8e{bottom:591.705333pt;}
.y138{bottom:592.349333pt;}
.y190{bottom:593.477333pt;}
.y15a{bottom:597.940000pt;}
.yff{bottom:602.601333pt;}
.yc4{bottom:605.274667pt;}
.y1ac{bottom:605.432000pt;}
.y18f{bottom:607.424000pt;}
.y8d{bottom:607.645333pt;}
.y137{bottom:608.289333pt;}
.y5a{bottom:608.700000pt;}
.y159{bottom:613.881333pt;}
.yfe{bottom:616.549333pt;}
.yc3{bottom:619.222667pt;}
.y1ab{bottom:619.378667pt;}
.y18e{bottom:621.372000pt;}
.y8c{bottom:623.585333pt;}
.y1c{bottom:624.958667pt;}
.yfd{bottom:630.497333pt;}
.yc2{bottom:633.170667pt;}
.y1aa{bottom:633.326667pt;}
.y18d{bottom:635.320000pt;}
.y1b{bottom:637.578667pt;}
.y8b{bottom:639.969333pt;}
.y136{bottom:640.112000pt;}
.yfc{bottom:644.444000pt;}
.y158{bottom:645.244000pt;}
.yc1{bottom:647.118667pt;}
.y1a9{bottom:647.274667pt;}
.y18c{bottom:649.268000pt;}
.y1a{bottom:650.197333pt;}
.y8a{bottom:655.909333pt;}
.y59{bottom:656.546667pt;}
.yfb{bottom:658.392000pt;}
.yc0{bottom:661.066667pt;}
.y1a8{bottom:661.222667pt;}
.y19{bottom:662.817333pt;}
.y18b{bottom:663.214667pt;}
.y89{bottom:671.849333pt;}
.yfa{bottom:672.340000pt;}
.y58{bottom:672.488000pt;}
.y1a7{bottom:675.170667pt;}
.y18{bottom:675.436000pt;}
.y18a{bottom:677.162667pt;}
.yf9{bottom:686.288000pt;}
.y88{bottom:687.789333pt;}
.y17{bottom:688.056000pt;}
.y135{bottom:688.353333pt;}
.y57{bottom:688.428000pt;}
.y1a6{bottom:689.117333pt;}
.y157{bottom:691.045333pt;}
.y189{bottom:691.110667pt;}
.ybf{bottom:691.514667pt;}
.y16{bottom:700.674667pt;}
.y1a5{bottom:703.065333pt;}
.y87{bottom:703.729333pt;}
.y134{bottom:704.293333pt;}
.y56{bottom:704.368000pt;}
.y188{bottom:705.058667pt;}
.ybe{bottom:705.462667pt;}
.y156{bottom:707.290667pt;}
.ye8{bottom:709.865333pt;}
.y15{bottom:713.294667pt;}
.y1a4{bottom:717.013333pt;}
.y187{bottom:719.006667pt;}
.y86{bottom:719.669333pt;}
.y133{bottom:720.233333pt;}
.y55{bottom:720.308000pt;}
.y155{bottom:723.534667pt;}
.y14{bottom:725.913333pt;}
.ybd{bottom:726.080000pt;}
.y1a3{bottom:730.961333pt;}
.y186{bottom:732.953333pt;}
.y85{bottom:735.610667pt;}
.y132{bottom:736.174667pt;}
.y54{bottom:736.248000pt;}
.y13{bottom:738.533333pt;}
.y154{bottom:739.476000pt;}
.y1a2{bottom:744.908000pt;}
.ybc{bottom:746.696000pt;}
.y185{bottom:746.901333pt;}
.y12{bottom:751.152000pt;}
.y84{bottom:751.550667pt;}
.y131{bottom:752.114667pt;}
.y53{bottom:752.188000pt;}
.y153{bottom:755.416000pt;}
.y1a1{bottom:758.856000pt;}
.ybb{bottom:760.644000pt;}
.y184{bottom:760.849333pt;}
.y83{bottom:767.933333pt;}
.y130{bottom:768.054667pt;}
.y52{bottom:768.129333pt;}
.y152{bottom:771.356000pt;}
.y1a0{bottom:772.804000pt;}
.yba{bottom:774.592000pt;}
.y183{bottom:774.797333pt;}
.y11{bottom:777.321333pt;}
.y82{bottom:783.873333pt;}
.y12f{bottom:783.994667pt;}
.y51{bottom:784.069333pt;}
.yb9{bottom:788.540000pt;}
.y182{bottom:788.744000pt;}
.y81{bottom:799.813333pt;}
.y12e{bottom:799.934667pt;}
.y50{bottom:800.009333pt;}
.y181{bottom:802.692000pt;}
.y151{bottom:802.718667pt;}
.y10{bottom:804.950667pt;}
.yb8{bottom:809.157333pt;}
.y80{bottom:815.754667pt;}
.y4f{bottom:815.949333pt;}
.y12d{bottom:816.640000pt;}
.yf{bottom:818.898667pt;}
.yb7{bottom:829.773333pt;}
.y180{bottom:830.588000pt;}
.y7f{bottom:831.694667pt;}
.y4e{bottom:831.889333pt;}
.y12c{bottom:832.580000pt;}
.ye{bottom:832.845333pt;}
.y19f{bottom:844.534667pt;}
.y17f{bottom:844.536000pt;}
.yd{bottom:846.793333pt;}
.y7e{bottom:847.634667pt;}
.y4d{bottom:847.829333pt;}
.y12b{bottom:848.520000pt;}
.yb6{bottom:850.390667pt;}
.y17e{bottom:858.482667pt;}
.yc{bottom:860.741333pt;}
.y7d{bottom:863.574667pt;}
.y4c{bottom:863.770667pt;}
.y12a{bottom:864.460000pt;}
.yb5{bottom:871.008000pt;}
.y17d{bottom:872.430667pt;}
.y7c{bottom:879.514667pt;}
.y4b{bottom:879.710667pt;}
.y150{bottom:880.400000pt;}
.y129{bottom:880.401333pt;}
.yb{bottom:881.729333pt;}
.yb4{bottom:884.956000pt;}
.y17c{bottom:886.378667pt;}
.y4a{bottom:895.650667pt;}
.y7b{bottom:895.897333pt;}
.y128{bottom:896.341333pt;}
.yb3{bottom:898.902667pt;}
.y19e{bottom:900.325333pt;}
.y17b{bottom:900.326667pt;}
.ya{bottom:907.233333pt;}
.y49{bottom:911.590667pt;}
.y7a{bottom:911.838667pt;}
.y127{bottom:912.281333pt;}
.yb2{bottom:912.850667pt;}
.y17a{bottom:914.273333pt;}
.y9{bottom:921.181333pt;}
.yb1{bottom:926.798667pt;}
.y48{bottom:927.530667pt;}
.y79{bottom:927.778667pt;}
.y126{bottom:928.221333pt;}
.yb0{bottom:929.820000pt;}
.y8{bottom:935.129333pt;}
.yaf{bottom:941.518667pt;}
.y179{bottom:942.169333pt;}
.y78{bottom:943.718667pt;}
.y47{bottom:944.161333pt;}
.y7{bottom:949.077333pt;}
.yae{bottom:955.466667pt;}
.y178{bottom:956.117333pt;}
.y77{bottom:959.658667pt;}
.y14f{bottom:960.101333pt;}
.y46{bottom:960.102667pt;}
.y6{bottom:963.024000pt;}
.yad{bottom:969.413333pt;}
.y19d{bottom:970.064000pt;}
.y177{bottom:970.065333pt;}
.y76{bottom:976.041333pt;}
.y45{bottom:976.042667pt;}
.yac{bottom:983.361333pt;}
.y5{bottom:984.012000pt;}
.y44{bottom:991.982667pt;}
.y176{bottom:997.960000pt;}
.yab{bottom:1003.978667pt;}
.y43{bottom:1007.922667pt;}
.y175{bottom:1011.908000pt;}
.y4{bottom:1015.893333pt;}
.y42{bottom:1023.862667pt;}
.yaa{bottom:1024.596000pt;}
.y19c{bottom:1025.854667pt;}
.y174{bottom:1025.856000pt;}
.ya9{bottom:1038.542667pt;}
.y3{bottom:1039.802667pt;}
.y2{bottom:1060.392000pt;}
.y1{bottom:1074.340000pt;}
.h16{height:21.755546pt;}
.ha{height:22.443895pt;}
.h8{height:30.392648pt;}
.h7{height:31.880400pt;}
.he{height:33.474560pt;}
.h5{height:34.239693pt;}
.h2{height:35.865600pt;}
.h4{height:38.043849pt;}
.h9{height:39.850400pt;}
.h1d{height:41.865907pt;}
.h6{height:42.758562pt;}
.h17{height:44.050073pt;}
.h1b{height:44.223241pt;}
.h1f{height:44.276267pt;}
.h21{height:44.348486pt;}
.hd{height:44.353820pt;}
.hf{height:45.429760pt;}
.h1c{height:47.076267pt;}
.h1a{height:47.950933pt;}
.h12{height:48.241820pt;}
.h1e{height:50.276574pt;}
.h10{height:50.599153pt;}
.h20{height:50.604486pt;}
.hb{height:51.290400pt;}
.h11{height:52.927733pt;}
.h14{height:52.986400pt;}
.hc{height:53.279733pt;}
.h19{height:53.497460pt;}
.h3{height:54.783356pt;}
.h18{height:55.796759pt;}
.h13{height:61.377820pt;}
.h15{height:343.223200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:609.725920pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:26.958500pt;}
.x3{left:72.000000pt;}
.x7{left:73.770667pt;}
.x8{left:83.290667pt;}
.x6{left:85.284000pt;}
.x21{left:100.836284pt;}
.x1f{left:105.874667pt;}
.xe{left:106.909333pt;}
.x12{left:108.274667pt;}
.x4{left:120.000000pt;}
.x1{left:121.854667pt;}
.x24{left:133.216365pt;}
.x2d{left:135.269333pt;}
.x30{left:138.830667pt;}
.x2e{left:140.780000pt;}
.x33{left:143.376000pt;}
.x5{left:145.060000pt;}
.x31{left:173.000000pt;}
.xb{left:177.234667pt;}
.x15{left:184.077333pt;}
.x34{left:198.676000pt;}
.x17{left:201.973333pt;}
.x14{left:206.553333pt;}
.x32{left:226.216000pt;}
.x2f{left:229.997333pt;}
.x16{left:238.753333pt;}
.x13{left:239.750667pt;}
.x20{left:250.142414pt;}
.x10{left:252.226667pt;}
.x23{left:259.429630pt;}
.x2{left:283.417333pt;}
.xd{left:300.720000pt;}
.x29{left:328.111957pt;}
.xf{left:370.925333pt;}
.x27{left:372.636755pt;}
.x18{left:385.650667pt;}
.x11{left:391.794667pt;}
.x28{left:401.989742pt;}
.x26{left:420.635510pt;}
.x9{left:422.685333pt;}
.x2b{left:423.847003pt;}
.xa{left:435.968000pt;}
.x2c{left:452.056000pt;}
.x1b{left:488.277333pt;}
.x1a{left:528.760000pt;}
.x1d{left:550.177333pt;}
.x2a{left:560.515789pt;}
.x19{left:579.112000pt;}
.x25{left:601.243596pt;}
.x1c{left:627.682667pt;}
.x35{left:658.084000pt;}
.x1e{left:671.696000pt;}
.xc{left:742.817333pt;}
}




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