
    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_2d7948bbe6b98192d75ea755.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3db021466ba931b4d9513c5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_32813c56f5ed106b7c49640a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fc89754cf575cb95c4f86da6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_191d10fb3d25252f11d573b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_3c0e916ee0ae6595d9feef0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_d7aa0714643a7ace2833a14a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_f30a1fe44cc67233f2d5cda7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_427021ae36571dddc7c17136.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_37821ab793c2a5ba260d7efc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_32813c56f5ed106b7c49640a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fc89754cf575cb95c4f86da6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_9ab20699020534086f3d1bf4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_f0f35b732bf5ed2d070d8b23.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_dc62a515c0272767289657b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_fe9cd2fd50558b013a1911a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_0f39c679f89d2727f45fc29c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_f773fa0e0e0dca7718f73068.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.142090;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_6b28bac61698560c5c8cfe5f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.692383;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_db48b1515d10759b68dcf1d3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.742188;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_f2e7c6b7bfade4160c5f0114.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.142090;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_77fdebf74f4df252a03d8be6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.142090;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_241d05d6af3d3962f1c6a08b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.142090;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_bf3d7364a28a1dcf850cd0f0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.742188;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_d619df08d695ac256c8cbcac.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.142090;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_89aef266999326f7387d60f6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.142090;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_9cb22fbfc8a301bd82bea43b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.142090;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;}
.m10{transform:matrix(0.235956,0.000000,-0.078652,0.237305,0,0);-ms-transform:matrix(0.235956,0.000000,-0.078652,0.237305,0,0);-webkit-transform:matrix(0.235956,0.000000,-0.078652,0.237305,0,0);}
.me{transform:matrix(0.236895,0.000000,-0.078964,0.237202,0,0);-ms-transform:matrix(0.236895,0.000000,-0.078964,0.237202,0,0);-webkit-transform:matrix(0.236895,0.000000,-0.078964,0.237202,0,0);}
.m8{transform:matrix(0.237353,0.000000,-0.079117,0.237151,0,0);-ms-transform:matrix(0.237353,0.000000,-0.079117,0.237151,0,0);-webkit-transform:matrix(0.237353,0.000000,-0.079117,0.237151,0,0);}
.m4{transform:matrix(0.237684,0.000000,-0.079228,0.237114,0,0);-ms-transform:matrix(0.237684,0.000000,-0.079228,0.237114,0,0);-webkit-transform:matrix(0.237684,0.000000,-0.079228,0.237114,0,0);}
.ma{transform:matrix(0.237701,0.000000,-0.079233,0.237112,0,0);-ms-transform:matrix(0.237701,0.000000,-0.079233,0.237112,0,0);-webkit-transform:matrix(0.237701,0.000000,-0.079233,0.237112,0,0);}
.m6{transform:matrix(0.238433,0.000000,-0.079478,0.237030,0,0);-ms-transform:matrix(0.238433,0.000000,-0.079478,0.237030,0,0);-webkit-transform:matrix(0.238433,0.000000,-0.079478,0.237030,0,0);}
.mf{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,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);}
.m7{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251480,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);}
.v4{vertical-align:-58.669794px;}
.v5{vertical-align:-55.185404px;}
.v6{vertical-align:-36.887645px;}
.v2{vertical-align:-20.879400px;}
.v3{vertical-align:-9.600000px;}
.v7{vertical-align:-1.857224px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:17.983200px;}
.v1{vertical-align:36.000000px;}
.ls7d{letter-spacing:-2.400000px;}
.ls57{letter-spacing:-2.280000px;}
.ls54{letter-spacing:-1.980000px;}
.ls21{letter-spacing:-1.728000px;}
.ls5b{letter-spacing:-1.440000px;}
.ls70{letter-spacing:-1.320000px;}
.ls53{letter-spacing:-1.227600px;}
.ls51{letter-spacing:-1.200000px;}
.ls28{letter-spacing:-1.188000px;}
.ls52{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.918000px;}
.ls20{letter-spacing:-0.912000px;}
.ls7b{letter-spacing:-0.831600px;}
.ls75{letter-spacing:-0.792000px;}
.ls5a{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.624000px;}
.ls25{letter-spacing:-0.612000px;}
.ls72{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.540000px;}
.ls84{letter-spacing:-0.528000px;}
.ls74{letter-spacing:-0.384000px;}
.ls58{letter-spacing:-0.316800px;}
.ls2a{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.191520px;}
.ls18{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.144000px;}
.ls67{letter-spacing:-0.143153px;}
.ls80{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.095760px;}
.ls7c{letter-spacing:-0.084000px;}
.ls1d{letter-spacing:-0.078120px;}
.ls71{letter-spacing:-0.074716px;}
.ls76{letter-spacing:-0.042000px;}
.ls17{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.095760px;}
.ls1b{letter-spacing:0.101880px;}
.lse{letter-spacing:0.102000px;}
.lsa{letter-spacing:0.108000px;}
.ls68{letter-spacing:0.120000px;}
.ls85{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.156240px;}
.ls1f{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.191520px;}
.lsb{letter-spacing:0.199200px;}
.ls1c{letter-spacing:0.203760px;}
.ls62{letter-spacing:0.234000px;}
.ls29{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.408000px;}
.ls2e{letter-spacing:0.420000px;}
.ls82{letter-spacing:0.456000px;}
.ls81{letter-spacing:0.474000px;}
.ls48{letter-spacing:0.480000px;}
.ls6e{letter-spacing:0.486000px;}
.ls10{letter-spacing:0.510000px;}
.ls5d{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.918000px;}
.ls59{letter-spacing:0.960000px;}
.ls63{letter-spacing:1.002000px;}
.ls31{letter-spacing:1.020000px;}
.ls69{letter-spacing:1.056000px;}
.ls55{letter-spacing:1.200000px;}
.ls56{letter-spacing:1.320000px;}
.ls83{letter-spacing:1.620000px;}
.ls78{letter-spacing:1.854000px;}
.ls45{letter-spacing:1.860000px;}
.ls6a{letter-spacing:1.866000px;}
.ls35{letter-spacing:2.220000px;}
.ls4f{letter-spacing:2.520000px;}
.ls39{letter-spacing:2.608800px;}
.ls47{letter-spacing:2.640000px;}
.ls4b{letter-spacing:2.940000px;}
.ls6b{letter-spacing:3.391200px;}
.ls3f{letter-spacing:3.480000px;}
.ls11{letter-spacing:3.489600px;}
.ls2f{letter-spacing:3.600000px;}
.ls33{letter-spacing:3.660000px;}
.ls7e{letter-spacing:4.017600px;}
.ls65{letter-spacing:4.020000px;}
.ls37{letter-spacing:4.140000px;}
.ls73{letter-spacing:4.813200px;}
.ls4{letter-spacing:11.433744px;}
.ls6{letter-spacing:11.586960px;}
.ls1{letter-spacing:11.682720px;}
.ls5{letter-spacing:11.778480px;}
.ls2d{letter-spacing:11.856000px;}
.ls15{letter-spacing:12.960000px;}
.ls16{letter-spacing:13.770000px;}
.ls9{letter-spacing:14.418000px;}
.ls3d{letter-spacing:15.600000px;}
.ls13{letter-spacing:15.606000px;}
.ls61{letter-spacing:16.200000px;}
.ls64{letter-spacing:16.260000px;}
.ls60{letter-spacing:16.800000px;}
.ls5e{letter-spacing:17.040000px;}
.ls5f{letter-spacing:17.400000px;}
.ls3c{letter-spacing:18.195600px;}
.ls3b{letter-spacing:18.208800px;}
.ls38{letter-spacing:19.186800px;}
.ls6f{letter-spacing:20.191200px;}
.ls79{letter-spacing:22.200000px;}
.ls6d{letter-spacing:24.991200px;}
.ls7f{letter-spacing:27.000000px;}
.ls66{letter-spacing:29.217600px;}
.ls3a{letter-spacing:128.820000px;}
.ls49{letter-spacing:142.140000px;}
.ls40{letter-spacing:144.208800px;}
.ls4c{letter-spacing:151.004400px;}
.ls43{letter-spacing:151.617600px;}
.ls4e{letter-spacing:153.586800px;}
.ls4d{letter-spacing:153.795600px;}
.ls4a{letter-spacing:156.013200px;}
.ls34{letter-spacing:160.200000px;}
.ls41{letter-spacing:160.786800px;}
.ls36{letter-spacing:161.400000px;}
.ls7a{letter-spacing:161.784000px;}
.ls30{letter-spacing:162.600000px;}
.ls42{letter-spacing:165.182400px;}
.ls44{letter-spacing:168.000000px;}
.ls46{letter-spacing:170.191200px;}
.ls32{letter-spacing:172.680000px;}
.ls50{letter-spacing:177.000000px;}
.ls3e{letter-spacing:179.340000px;}
.ls6c{letter-spacing:800.854784px;}
.ls2c{letter-spacing:882.000000px;}
.ls5c{letter-spacing:942.754195px;}
.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;}
}
.wsa{word-spacing:-78.120000px;}
.wsa7{word-spacing:-41.660757px;}
.ws94{word-spacing:-39.528000px;}
.ws8e{word-spacing:-35.159168px;}
.ws90{word-spacing:-32.940000px;}
.wsae{word-spacing:-26.352000px;}
.ws1c{word-spacing:-25.806000px;}
.ws9{word-spacing:-25.571880px;}
.ws18{word-spacing:-25.500000px;}
.ws8{word-spacing:-25.470000px;}
.ws1f{word-spacing:-24.582000px;}
.wsa6{word-spacing:-23.058000px;}
.ws6d{word-spacing:-18.873230px;}
.wsb4{word-spacing:-18.102900px;}
.wsa4{word-spacing:-18.000000px;}
.ws6b{word-spacing:-17.894100px;}
.ws6c{word-spacing:-17.750947px;}
.ws68{word-spacing:-16.628573px;}
.ws8b{word-spacing:-16.010550px;}
.ws66{word-spacing:-15.771450px;}
.ws14{word-spacing:-15.606000px;}
.ws69{word-spacing:-15.420000px;}
.ws27{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.012000px;}
.ws51{word-spacing:-15.000000px;}
.ws2{word-spacing:-14.850000px;}
.ws4f{word-spacing:-14.760000px;}
.ws23{word-spacing:-14.094000px;}
.ws50{word-spacing:-13.920000px;}
.ws72{word-spacing:-13.800000px;}
.wse{word-spacing:-13.662000px;}
.ws10{word-spacing:-13.608000px;}
.ws11{word-spacing:-13.500000px;}
.wsc5{word-spacing:-13.056000px;}
.ws24{word-spacing:-12.906000px;}
.wsb{word-spacing:-12.780000px;}
.wsb6{word-spacing:-12.600000px;}
.ws13{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.970000px;}
.ws7{word-spacing:-11.874240px;}
.wsaf{word-spacing:-11.856000px;}
.ws5{word-spacing:-11.778480px;}
.wsa1{word-spacing:-11.616000px;}
.wsc4{word-spacing:-11.472000px;}
.ws16{word-spacing:-11.088000px;}
.wsb0{word-spacing:-10.800000px;}
.wsb3{word-spacing:-10.560000px;}
.ws91{word-spacing:-10.500000px;}
.wsa5{word-spacing:-10.458000px;}
.ws17{word-spacing:-10.272000px;}
.wsa3{word-spacing:-9.900000px;}
.ws8a{word-spacing:-9.339450px;}
.wsbd{word-spacing:-9.306000px;}
.ws8c{word-spacing:-9.264734px;}
.ws67{word-spacing:-9.199950px;}
.wsa2{word-spacing:-9.108000px;}
.wsb1{word-spacing:-9.068400px;}
.ws52{word-spacing:-8.672400px;}
.wsc{word-spacing:-7.470000px;}
.wsbc{word-spacing:-7.380000px;}
.ws57{word-spacing:-1.320000px;}
.ws19{word-spacing:-1.122000px;}
.wsc6{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.918000px;}
.ws60{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.612000px;}
.ws5e{word-spacing:-0.600000px;}
.ws47{word-spacing:-0.594000px;}
.ws12{word-spacing:-0.430920px;}
.ws7b{word-spacing:-0.420000px;}
.ws41{word-spacing:-0.408000px;}
.ws25{word-spacing:-0.384000px;}
.wsc8{word-spacing:-0.360000px;}
.ws42{word-spacing:-0.306000px;}
.ws15{word-spacing:-0.298800px;}
.ws6{word-spacing:-0.287280px;}
.ws3d{word-spacing:-0.270000px;}
.ws2e{word-spacing:-0.234360px;}
.ws2c{word-spacing:-0.203760px;}
.ws3{word-spacing:-0.191520px;}
.ws32{word-spacing:-0.162000px;}
.wsd4{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.101880px;}
.ws0{word-spacing:-0.099000px;}
.ws2b{word-spacing:-0.095760px;}
.ws28{word-spacing:0.000000px;}
.wsd{word-spacing:0.054000px;}
.ws2a{word-spacing:0.095760px;}
.ws1d{word-spacing:0.102000px;}
.ws40{word-spacing:0.144000px;}
.wsf{word-spacing:0.162000px;}
.ws9e{word-spacing:0.180000px;}
.ws7a{word-spacing:0.240000px;}
.ws29{word-spacing:0.270000px;}
.ws3e{word-spacing:0.287280px;}
.ws1a{word-spacing:0.306000px;}
.ws44{word-spacing:0.312000px;}
.ws84{word-spacing:0.360000px;}
.wscb{word-spacing:0.384000px;}
.ws62{word-spacing:0.480000px;}
.ws4d{word-spacing:0.540000px;}
.ws3f{word-spacing:0.594000px;}
.ws59{word-spacing:0.600000px;}
.ws43{word-spacing:0.612000px;}
.ws7d{word-spacing:0.780000px;}
.ws5a{word-spacing:0.840000px;}
.wsb7{word-spacing:0.912000px;}
.ws33{word-spacing:0.918000px;}
.ws98{word-spacing:1.080000px;}
.ws5b{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws9a{word-spacing:1.320000px;}
.ws1e{word-spacing:1.326000px;}
.wsbf{word-spacing:1.344000px;}
.ws64{word-spacing:1.380000px;}
.ws65{word-spacing:1.440000px;}
.ws46{word-spacing:1.512000px;}
.wsb9{word-spacing:1.584000px;}
.ws5c{word-spacing:1.680000px;}
.ws97{word-spacing:1.728000px;}
.ws5f{word-spacing:1.800000px;}
.wsc1{word-spacing:1.812000px;}
.ws7c{word-spacing:2.040000px;}
.wsba{word-spacing:2.112000px;}
.ws81{word-spacing:2.280000px;}
.ws83{word-spacing:2.340000px;}
.wsb8{word-spacing:2.400000px;}
.ws5d{word-spacing:2.580000px;}
.ws21{word-spacing:2.662200px;}
.ws30{word-spacing:2.700000px;}
.ws61{word-spacing:2.880000px;}
.ws63{word-spacing:3.000000px;}
.ws37{word-spacing:3.078000px;}
.wsa0{word-spacing:3.240000px;}
.ws4e{word-spacing:3.420000px;}
.wscd{word-spacing:3.744000px;}
.ws45{word-spacing:3.888000px;}
.ws71{word-spacing:3.960000px;}
.wsab{word-spacing:4.200000px;}
.ws58{word-spacing:4.440000px;}
.ws22{word-spacing:4.482000px;}
.ws96{word-spacing:4.680000px;}
.wscc{word-spacing:4.800000px;}
.ws39{word-spacing:4.860000px;}
.ws9d{word-spacing:4.980000px;}
.wsc2{word-spacing:5.184000px;}
.ws38{word-spacing:5.238000px;}
.ws4c{word-spacing:5.400000px;}
.ws3a{word-spacing:5.562000px;}
.ws82{word-spacing:5.640000px;}
.ws8f{word-spacing:5.820000px;}
.ws3b{word-spacing:5.940000px;}
.ws79{word-spacing:6.000000px;}
.ws99{word-spacing:6.600000px;}
.ws4b{word-spacing:6.840000px;}
.ws78{word-spacing:7.140000px;}
.wsc3{word-spacing:7.200000px;}
.ws95{word-spacing:7.266000px;}
.wsce{word-spacing:7.344000px;}
.ws35{word-spacing:7.398000px;}
.ws36{word-spacing:7.722000px;}
.ws77{word-spacing:7.800000px;}
.wsd0{word-spacing:8.016000px;}
.wsa8{word-spacing:8.040000px;}
.ws3c{word-spacing:8.100000px;}
.wsbb{word-spacing:8.340000px;}
.ws2f{word-spacing:8.478000px;}
.wsc7{word-spacing:9.000000px;}
.ws9c{word-spacing:9.240000px;}
.ws6f{word-spacing:9.480000px;}
.ws7f{word-spacing:10.200000px;}
.wscf{word-spacing:10.416000px;}
.ws9b{word-spacing:10.440000px;}
.ws70{word-spacing:10.620000px;}
.ws34{word-spacing:10.638000px;}
.wsd3{word-spacing:10.800000px;}
.ws7e{word-spacing:11.400000px;}
.wsb2{word-spacing:11.488800px;}
.ws20{word-spacing:11.718000px;}
.ws6e{word-spacing:11.880000px;}
.wsca{word-spacing:12.000000px;}
.ws49{word-spacing:12.312000px;}
.ws31{word-spacing:12.420000px;}
.ws89{word-spacing:12.600000px;}
.ws88{word-spacing:12.840000px;}
.wsc9{word-spacing:13.200000px;}
.ws80{word-spacing:13.380000px;}
.ws48{word-spacing:13.500000px;}
.ws86{word-spacing:13.800000px;}
.ws85{word-spacing:14.040000px;}
.ws87{word-spacing:14.340000px;}
.wsd2{word-spacing:14.400000px;}
.wsaa{word-spacing:14.880000px;}
.wsa9{word-spacing:15.000000px;}
.wsac{word-spacing:15.240000px;}
.wsb5{word-spacing:15.342455px;}
.wsad{word-spacing:15.540000px;}
.wsc0{word-spacing:16.440000px;}
.wsbe{word-spacing:17.488800px;}
.ws9f{word-spacing:17.640000px;}
.ws73{word-spacing:18.360000px;}
.wsd1{word-spacing:19.200000px;}
.ws76{word-spacing:21.240000px;}
.ws75{word-spacing:22.200000px;}
.ws74{word-spacing:22.440000px;}
.ws55{word-spacing:89.133600px;}
.ws54{word-spacing:122.295600px;}
.ws56{word-spacing:128.163600px;}
.ws92{word-spacing:288.144000px;}
.ws6a{word-spacing:404.907695px;}
.ws93{word-spacing:454.104000px;}
.ws53{word-spacing:500.340000px;}
.ws8d{word-spacing:518.421609px;}
._38{margin-left:-1179.192000px;}
._2e{margin-left:-897.792000px;}
._48{margin-left:-653.292272px;}
._45{margin-left:-459.360000px;}
._43{margin-left:-441.504000px;}
._17{margin-left:-411.789762px;}
._36{margin-left:-409.769304px;}
._46{margin-left:-394.992000px;}
._13{margin-left:-375.234338px;}
._3c{margin-left:-370.512000px;}
._1a{margin-left:-367.557969px;}
._1c{margin-left:-311.685965px;}
._49{margin-left:-308.732160px;}
._23{margin-left:-302.481866px;}
._24{margin-left:-263.545785px;}
._28{margin-left:-260.331543px;}
._20{margin-left:-254.740408px;}
._15{margin-left:-243.761875px;}
._37{margin-left:-228.744000px;}
._44{margin-left:-227.232000px;}
._16{margin-left:-221.939594px;}
._2b{margin-left:-196.143997px;}
._4c{margin-left:-185.590931px;}
._35{margin-left:-173.592000px;}
._18{margin-left:-172.224234px;}
._27{margin-left:-170.096083px;}
._4b{margin-left:-167.994912px;}
._39{margin-left:-164.850000px;}
._41{margin-left:-155.232000px;}
._4a{margin-left:-154.142902px;}
._1b{margin-left:-153.115897px;}
._19{margin-left:-150.521839px;}
._3a{margin-left:-148.596000px;}
._14{margin-left:-142.132307px;}
._11{margin-left:-139.798133px;}
._3d{margin-left:-136.368000px;}
._2f{margin-left:-135.245662px;}
._2c{margin-left:-132.998387px;}
._33{margin-left:-131.220526px;}
._32{margin-left:-119.808000px;}
._12{margin-left:-118.601304px;}
._3e{margin-left:-117.000000px;}
._3f{margin-left:-111.276000px;}
._21{margin-left:-103.499474px;}
._3b{margin-left:-90.468000px;}
._30{margin-left:-89.334696px;}
._42{margin-left:-87.318000px;}
._2a{margin-left:-83.905619px;}
._22{margin-left:-81.453943px;}
._47{margin-left:-80.430000px;}
._34{margin-left:-76.536000px;}
._40{margin-left:-74.483240px;}
._31{margin-left:-54.000000px;}
._29{margin-left:-47.705911px;}
._26{margin-left:-33.136369px;}
._9{margin-left:-4.406400px;}
._7{margin-left:-3.070500px;}
._0{margin-left:-1.791900px;}
._1{width:1.242000px;}
._4{width:2.562000px;}
._5{width:4.491900px;}
._b{width:6.007800px;}
._25{width:8.076000px;}
._2d{width:9.922200px;}
._a{width:11.675700px;}
._1e{width:13.673400px;}
._1f{width:14.992500px;}
._6{width:17.388000px;}
._3{width:19.739700px;}
._2{width:24.185160px;}
._1d{width:36.002100px;}
._c{width:166.440000px;}
._d{width:171.360000px;}
._f{width:650.002800px;}
._10{width:818.832000px;}
._8{width:955.362000px;}
._e{width:1027.361400px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fsd{font-size:30.000000px;}
.fs11{font-size:36.799800px;}
.fs15{font-size:37.357800px;}
.fsf{font-size:39.600000px;}
.fs18{font-size:42.000000px;}
.fs1b{font-size:42.240000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.120000px;}
.fsc{font-size:51.600000px;}
.fs1{font-size:54.000000px;}
.fse{font-size:60.000000px;}
.fs10{font-size:63.085800px;}
.fs16{font-size:64.042200px;}
.fs12{font-size:66.514290px;}
.fs17{font-size:67.512100px;}
.fs13{font-size:71.576400px;}
.fs3{font-size:72.000000px;}
.fs1c{font-size:72.411600px;}
.fs14{font-size:75.492920px;}
.fs1a{font-size:75.884803px;}
.fs19{font-size:75.913469px;}
.fs1d{font-size:76.285253px;}
.fsb{font-size:78.000000px;}
.fs5{font-size:78.120000px;}
.fs0{font-size:99.000000px;}
.fs9{font-size:99.600000px;}
.fs4{font-size:101.880000px;}
.fsa{font-size:102.000000px;}
.y9{bottom:-820.773420px;}
.y8{bottom:-805.834860px;}
.y26{bottom:-731.140350px;}
.y25{bottom:-699.311850px;}
.y24{bottom:-682.841850px;}
.y23{bottom:-666.371850px;}
.y22{bottom:-633.337350px;}
.y21{bottom:-616.867350px;}
.y20{bottom:-600.302850px;}
.y1f{bottom:-583.832850px;}
.y1e{bottom:-567.362850px;}
.y1d{bottom:-550.798350px;}
.y1c{bottom:-534.328350px;}
.y1b{bottom:-517.858350px;}
.y1a{bottom:-501.293850px;}
.y19{bottom:-484.823850px;}
.y18{bottom:-468.353850px;}
.y17{bottom:-451.789350px;}
.y16{bottom:-435.319350px;}
.y15{bottom:-418.849350px;}
.y14{bottom:-402.284850px;}
.y13{bottom:-385.814850px;}
.y12{bottom:-369.344850px;}
.y11{bottom:-336.310350px;}
.y53{bottom:-318.985650px;}
.y52{bottom:-303.985650px;}
.y6b{bottom:-270.985650px;}
.y10{bottom:-269.170350px;}
.y6a{bottom:-255.985650px;}
.yf{bottom:-254.050350px;}
.ye{bottom:-239.110500px;}
.yd{bottom:-215.800350px;}
.y69{bottom:-187.885650px;}
.yc{bottom:-173.868540px;}
.y68{bottom:-169.885650px;}
.yb{bottom:-143.890350px;}
.y67{bottom:-133.885650px;}
.ya{bottom:-98.260500px;}
.y66{bottom:-82.885650px;}
.y65{bottom:-51.079650px;}
.y64{bottom:-34.582650px;}
.y2b{bottom:-31.889700px;}
.y33{bottom:-29.850900px;}
.y63{bottom:-18.085650px;}
.y32{bottom:-14.850900px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.444870px;}
.y115{bottom:8.998800px;}
.yf2{bottom:9.000300px;}
.y118{bottom:9.001800px;}
.y13a{bottom:23.998800px;}
.y6{bottom:24.679650px;}
.y128{bottom:34.650450px;}
.ye1{bottom:35.188800px;}
.ye7{bottom:35.189100px;}
.yea{bottom:35.647800px;}
.ye2{bottom:35.653106px;}
.ye8{bottom:35.653406px;}
.y107{bottom:37.125300px;}
.y5{bottom:59.239500px;}
.y2a{bottom:68.165850px;}
.y29{bottom:81.665850px;}
.y162{bottom:93.148650px;}
.y28{bottom:95.165850px;}
.y4{bottom:97.759500px;}
.y9c{bottom:101.437800px;}
.y161{bottom:108.148650px;}
.y137{bottom:117.448650px;}
.y160{bottom:123.148650px;}
.y4d{bottom:127.799850px;}
.y2d{bottom:127.800600px;}
.y136{bottom:135.448650px;}
.y9b{bottom:136.537800px;}
.y15f{bottom:138.148650px;}
.y15e{bottom:153.148650px;}
.y135{bottom:153.448650px;}
.y15d{bottom:168.148650px;}
.y9a{bottom:172.537800px;}
.y110{bottom:178.348650px;}
.y15c{bottom:183.148650px;}
.y99{bottom:189.937800px;}
.y10f{bottom:196.348650px;}
.y15b{bottom:198.148650px;}
.y98{bottom:207.037800px;}
.y12c{bottom:207.777000px;}
.y12e{bottom:212.277000px;}
.y15a{bottom:213.148650px;}
.y10e{bottom:214.348650px;}
.y133{bottom:221.703000px;}
.y97{bottom:224.437800px;}
.y130{bottom:226.209000px;}
.y134{bottom:226.348650px;}
.y159{bottom:228.148650px;}
.yf7{bottom:228.148800px;}
.y12d{bottom:232.903500px;}
.y132{bottom:232.906500px;}
.y12f{bottom:237.405000px;}
.y45{bottom:238.059450px;}
.y2e{bottom:241.299000px;}
.y96{bottom:241.537800px;}
.y158{bottom:243.148650px;}
.y131{bottom:245.464500px;}
.yf6{bottom:246.148800px;}
.y10d{bottom:250.348650px;}
.y44{bottom:254.556450px;}
.y95{bottom:258.937800px;}
.y4b{bottom:259.448100px;}
.yf5{bottom:264.148800px;}
.y43{bottom:271.053450px;}
.y4a{bottom:274.448100px;}
.y127{bottom:275.698500px;}
.y94{bottom:276.037800px;}
.y157{bottom:276.748650px;}
.y124{bottom:279.658950px;}
.yf4{bottom:282.148800px;}
.y126{bottom:284.184600px;}
.y12a{bottom:293.801850px;}
.y129{bottom:298.327500px;}
.y12b{bottom:298.348650px;}
.y93{bottom:302.437800px;}
.y10c{bottom:303.748650px;}
.y42{bottom:304.978950px;}
.y125{bottom:305.826630px;}
.y92{bottom:319.537800px;}
.y41{bottom:321.475950px;}
.y10b{bottom:321.748650px;}
.y156{bottom:330.748650px;}
.yf1{bottom:332.398500px;}
.yf0{bottom:336.898950px;}
.y91{bottom:336.937800px;}
.y40{bottom:337.972950px;}
.y10a{bottom:339.748650px;}
.yf3{bottom:341.548800px;}
.y49{bottom:342.548100px;}
.y155{bottom:348.748650px;}
.y90{bottom:354.037800px;}
.y3f{bottom:354.469950px;}
.yd4{bottom:355.374750px;}
.y109{bottom:357.748650px;}
.y48{bottom:360.548100px;}
.y154{bottom:366.748650px;}
.y123{bottom:367.648650px;}
.y3e{bottom:370.966950px;}
.y8f{bottom:371.437800px;}
.yd3{bottom:373.374750px;}
.y153{bottom:384.748650px;}
.y122{bottom:385.648650px;}
.y3d{bottom:387.463950px;}
.y8e{bottom:388.537800px;}
.y148{bottom:389.548800px;}
.y106{bottom:389.998500px;}
.yd2{bottom:391.374900px;}
.y102{bottom:395.386800px;}
.y47{bottom:396.548100px;}
.yef{bottom:399.148650px;}
.y105{bottom:399.886800px;}
.y152{bottom:402.748650px;}
.y3c{bottom:403.960950px;}
.y147{bottom:407.548800px;}
.yd1{bottom:409.374900px;}
.y101{bottom:409.498800px;}
.y104{bottom:413.998800px;}
.y108{bottom:414.148650px;}
.yee{bottom:417.148800px;}
.y3b{bottom:420.457950px;}
.y151{bottom:420.748650px;}
.y103{bottom:422.623800px;}
.y146{bottom:425.548800px;}
.y8d{bottom:435.037800px;}
.yed{bottom:435.148800px;}
.y3a{bottom:436.954950px;}
.y150{bottom:438.748650px;}
.y121{bottom:439.048800px;}
.yd0{bottom:445.374900px;}
.y46{bottom:447.548100px;}
.y8c{bottom:453.037800px;}
.y14f{bottom:456.748650px;}
.ye0{bottom:467.700000px;}
.y39{bottom:469.948950px;}
.y8b{bottom:471.037800px;}
.y6d{bottom:471.908850px;}
.ye3{bottom:473.161050px;}
.ydd{bottom:473.164868px;}
.y14e{bottom:474.748650px;}
.yeb{bottom:477.163950px;}
.y145{bottom:478.948800px;}
.ycf{bottom:481.374900px;}
.y100{bottom:481.948800px;}
.ydc{bottom:484.334850px;}
.ye6{bottom:486.385711px;}
.y6c{bottom:486.908850px;}
.y8a{bottom:489.037800px;}
.ye9{bottom:490.380900px;}
.yec{bottom:493.348800px;}
.y4e{bottom:497.481000px;}
.ye4{bottom:498.881895px;}
.yde{bottom:498.885713px;}
.ye5{bottom:499.348868px;}
.ydf{bottom:499.352686px;}
.yce{bottom:499.374900px;}
.yff{bottom:499.948800px;}
.y51{bottom:505.714350px;}
.y89{bottom:507.037800px;}
.y14d{bottom:510.748650px;}
.y62{bottom:513.319200px;}
.ycd{bottom:517.374900px;}
.yfe{bottom:517.948800px;}
.y88{bottom:525.037800px;}
.y50{bottom:526.714350px;}
.y61{bottom:529.816200px;}
.ycc{bottom:535.374900px;}
.yfd{bottom:535.948800px;}
.y87{bottom:543.037800px;}
.y60{bottom:546.313200px;}
.y14c{bottom:546.748650px;}
.y38{bottom:552.148950px;}
.ycb{bottom:553.374900px;}
.yfc{bottom:553.948800px;}
.ydb{bottom:557.848800px;}
.y4f{bottom:560.914350px;}
.y86{bottom:561.037800px;}
.y5f{bottom:562.810200px;}
.y14b{bottom:564.748650px;}
.yfb{bottom:571.948800px;}
.y37{bottom:575.248800px;}
.yda{bottom:575.848800px;}
.y85{bottom:579.037800px;}
.y5e{bottom:579.307200px;}
.y14a{bottom:582.748650px;}
.yca{bottom:589.374900px;}
.yfa{bottom:589.948800px;}
.y5d{bottom:595.804200px;}
.y84{bottom:597.037800px;}
.yf9{bottom:607.948800px;}
.yd9{bottom:611.848800px;}
.y5c{bottom:612.301200px;}
.y83{bottom:615.037800px;}
.y36{bottom:617.261100px;}
.yc9{bottom:625.374900px;}
.y5b{bottom:628.798200px;}
.yd8{bottom:629.848800px;}
.y82{bottom:633.037800px;}
.y149{bottom:636.148650px;}
.yf8{bottom:643.348800px;}
.yc8{bottom:643.374900px;}
.y5a{bottom:645.295200px;}
.y35{bottom:647.249100px;}
.yd7{bottom:647.848800px;}
.y81{bottom:651.037800px;}
.yc7{bottom:661.374900px;}
.y80{bottom:669.037800px;}
.y59{bottom:678.295200px;}
.yd6{bottom:683.248650px;}
.y7f{bottom:687.037800px;}
.y120{bottom:689.848800px;}
.y34{bottom:692.849100px;}
.yc0{bottom:698.861449px;}
.y7e{bottom:705.037800px;}
.y11f{bottom:707.848800px;}
.ybf{bottom:712.657800px;}
.yc2{bottom:714.787198px;}
.yc5{bottom:714.797658px;}
.yc6{bottom:715.074900px;}
.y7d{bottom:723.037800px;}
.yc1{bottom:724.253177px;}
.y11e{bottom:725.848800px;}
.yc3{bottom:725.881540px;}
.yc4{bottom:725.892000px;}
.y7c{bottom:741.037800px;}
.y11d{bottom:758.848500px;}
.y7b{bottom:759.037800px;}
.y58{bottom:760.495200px;}
.ybe{bottom:766.074900px;}
.y7a{bottom:777.037800px;}
.y11b{bottom:779.848500px;}
.y57{bottom:783.595050px;}
.ybd{bottom:784.674900px;}
.y11c{bottom:787.348800px;}
.y31{bottom:794.849100px;}
.y79{bottom:795.037800px;}
.y11a{bottom:800.848500px;}
.ybc{bottom:802.674900px;}
.y170{bottom:812.411850px;}
.y144{bottom:812.848800px;}
.y78{bottom:813.037800px;}
.y30{bottom:815.849100px;}
.ybb{bottom:820.674900px;}
.y119{bottom:821.848500px;}
.y56{bottom:825.607350px;}
.y16f{bottom:827.411850px;}
.y143{bottom:830.848800px;}
.y77{bottom:831.037800px;}
.yba{bottom:838.674900px;}
.y16e{bottom:842.411850px;}
.y117{bottom:842.847000px;}
.y142{bottom:848.848800px;}
.y76{bottom:849.037800px;}
.y2f{bottom:850.049100px;}
.y55{bottom:855.595350px;}
.y16d{bottom:857.411850px;}
.y116{bottom:863.848500px;}
.y75{bottom:867.037800px;}
.y16c{bottom:872.411850px;}
.ya6{bottom:875.787908px;}
.ya2{bottom:875.803679px;}
.ya8{bottom:880.219685px;}
.yab{bottom:880.235456px;}
.y140{bottom:881.848500px;}
.yb1{bottom:882.138900px;}
.y114{bottom:884.850000px;}
.y74{bottom:885.037800px;}
.ya4{bottom:886.023579px;}
.ya0{bottom:886.039350px;}
.y16b{bottom:887.411850px;}
.y141{bottom:889.348800px;}
.yb5{bottom:890.639055px;}
.yaa{bottom:892.963017px;}
.yad{bottom:894.571704px;}
.yb2{bottom:894.582574px;}
.yb7{bottom:894.584515px;}
.yb8{bottom:894.584700px;}
.ya5{bottom:897.394794px;}
.ya1{bottom:897.410565px;}
.yb9{bottom:898.074900px;}
.yb0{bottom:900.701373px;}
.yb4{bottom:900.703800px;}
.y54{bottom:901.195350px;}
.y16a{bottom:902.411850px;}
.y13e{bottom:902.848500px;}
.y73{bottom:903.037800px;}
.ya9{bottom:903.182916px;}
.yac{bottom:903.198688px;}
.yae{bottom:904.633890px;}
.yb3{bottom:904.644759px;}
.yb6{bottom:904.646700px;}
.y113{bottom:905.848500px;}
.ya7{bottom:907.614694px;}
.ya3{bottom:907.630465px;}
.y13f{bottom:910.348800px;}
.yaf{bottom:914.133300px;}
.y169{bottom:917.411850px;}
.y13c{bottom:923.847000px;}
.y112{bottom:927.748500px;}
.y13d{bottom:931.348800px;}
.y168{bottom:932.411850px;}
.y3{bottom:935.766000px;}
.y72{bottom:936.037800px;}
.y139{bottom:945.750000px;}
.y167{bottom:947.411850px;}
.y13b{bottom:954.748800px;}
.y111{bottom:958.348800px;}
.y27{bottom:961.130850px;}
.y166{bottom:962.411850px;}
.y4c{bottom:969.595500px;}
.y71{bottom:974.137800px;}
.y9f{bottom:974.874900px;}
.y165{bottom:977.411850px;}
.y1{bottom:988.999500px;}
.y138{bottom:991.348800px;}
.y9e{bottom:991.974900px;}
.y70{bottom:992.137800px;}
.y164{bottom:992.411850px;}
.y2c{bottom:1002.547500px;}
.yd5{bottom:1024.348800px;}
.y163{bottom:1025.411850px;}
.y9d{bottom:1026.474900px;}
.y6f{bottom:1027.537800px;}
.y2{bottom:1033.378950px;}
.y6e{bottom:1035.561750px;}
.h12{height:-535.894500px;}
.h1c{height:-34.162500px;}
.h3f{height:20.844727px;}
.h3d{height:21.000000px;}
.h23{height:25.569392px;}
.h2c{height:25.957104px;}
.hc{height:26.290898px;}
.h18{height:26.396484px;}
.h35{height:26.998500px;}
.h3a{height:29.182617px;}
.h44{height:29.349375px;}
.h25{height:32.379512px;}
.h2f{height:32.870486px;}
.h8{height:33.268184px;}
.h10{height:33.328125px;}
.h15{height:33.351562px;}
.h48{height:35.997000px;}
.h11{height:36.000000px;}
.hd{height:36.597656px;}
.h34{height:36.955078px;}
.h40{height:37.166250px;}
.h1e{height:37.494141px;}
.he{height:37.520508px;}
.h5{height:38.654297px;}
.h3{height:38.664000px;}
.h3b{height:38.903320px;}
.h1a{height:40.664062px;}
.h1b{height:41.689453px;}
.hf{height:42.128789px;}
.h19{height:42.234375px;}
.h24{height:43.833542px;}
.h3e{height:44.460938px;}
.h2e{height:44.498072px;}
.h29{height:49.733016px;}
.h9{height:50.027344px;}
.h43{height:50.313333px;}
.h2d{height:50.698500px;}
.h42{height:52.803000px;}
.h39{height:54.000000px;}
.h26{height:55.508111px;}
.h20{height:55.576172px;}
.h30{height:56.349631px;}
.h31{height:57.463115px;}
.h22{height:58.434454px;}
.h32{height:59.320339px;}
.h27{height:61.610161px;}
.h33{height:62.534402px;}
.h38{height:63.351562px;}
.h41{height:63.713722px;}
.h7{height:65.983887px;}
.h28{height:66.299038px;}
.h14{height:66.383789px;}
.h36{height:66.691406px;}
.h45{height:67.072659px;}
.h2a{height:69.926792px;}
.h3c{height:70.289781px;}
.h37{height:70.316333px;}
.h46{height:70.660705px;}
.ha{height:70.788691px;}
.h16{height:70.872070px;}
.hb{height:71.519414px;}
.h17{height:71.852930px;}
.h2{height:74.646000px;}
.h47{height:84.674606px;}
.h4{height:110.269500px;}
.h6{height:110.284500px;}
.h13{height:225.354000px;}
.h1d{height:437.952000px;}
.h2b{height:1013.740500px;}
.h49{height:1014.802500px;}
.h21{height:1015.866000px;}
.h1f{height:1016.929500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:-4.798500px;}
.w13{width:74.401500px;}
.w11{width:127.500000px;}
.w12{width:127.501500px;}
.we{width:139.500000px;}
.wd{width:144.601500px;}
.wf{width:157.498500px;}
.w10{width:169.500000px;}
.w3{width:174.636000px;}
.wc{width:210.900000px;}
.w9{width:242.100000px;}
.w8{width:287.098500px;}
.w4{width:426.901500px;}
.wa{width:464.400000px;}
.w14{width:812.125500px;}
.w5{width:813.189000px;}
.w7{width:814.251000px;}
.w6{width:814.474500px;}
.wb{width:815.536500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x7{left:-526.803030px;}
.xa{left:-513.026730px;}
.xb{left:-507.989250px;}
.x9{left:-475.229250px;}
.xd{left:-460.289250px;}
.x8{left:-414.389250px;}
.xc{left:-380.367450px;}
.x4{left:-345.539250px;}
.x5{left:-314.939250px;}
.x6{left:-305.669250px;}
.x0{left:0.000000px;}
.x25{left:2.125500px;}
.x13{left:3.189000px;}
.x72{left:4.252500px;}
.x5d{left:7.800450px;}
.x4f{left:34.301550px;}
.x10{left:56.125950px;}
.xf{left:58.251900px;}
.x73{left:59.452050px;}
.x56{left:60.812550px;}
.x24{left:64.200000px;}
.x1d{left:67.389000px;}
.x66{left:71.157000px;}
.x23{left:72.900000px;}
.x38{left:75.025950px;}
.x1c{left:76.089000px;}
.x74{left:77.452050px;}
.x12{left:86.400000px;}
.x47{left:98.824500px;}
.x50{left:100.243050px;}
.x35{left:101.719825px;}
.x65{left:107.715450px;}
.x4b{left:110.874299px;}
.x5a{left:119.045889px;}
.x2b{left:121.307125px;}
.x64{left:129.516300px;}
.x4d{left:137.071413px;}
.x63{left:141.609900px;}
.x27{left:144.041042px;}
.x46{left:150.314564px;}
.x30{left:151.738147px;}
.x11{left:153.489000px;}
.x3f{left:155.831400px;}
.x18{left:158.100000px;}
.x6a{left:159.789000px;}
.x1f{left:161.289000px;}
.x68{left:164.088222px;}
.x19{left:165.648000px;}
.x17{left:167.400000px;}
.x20{left:168.837000px;}
.x1e{left:170.589000px;}
.x3b{left:171.900000px;}
.x34{left:173.146694px;}
.x4e{left:175.064250px;}
.x2d{left:180.435714px;}
.x69{left:181.568400px;}
.x62{left:185.152650px;}
.x3d{left:186.570000px;}
.x54{left:189.791805px;}
.x45{left:192.256348px;}
.x4a{left:195.169153px;}
.x44{left:197.518934px;}
.x59{left:200.043615px;}
.x3a{left:209.070000px;}
.x1b{left:216.600000px;}
.x22{left:219.789000px;}
.x52{left:220.812300px;}
.x2{left:236.123100px;}
.x6f{left:238.389000px;}
.x3e{left:241.001400px;}
.x5c{left:245.218050px;}
.x3c{left:253.656000px;}
.x39{left:259.704000px;}
.x58{left:260.760450px;}
.x4c{left:265.024650px;}
.x14{left:267.300000px;}
.x15{left:276.600000px;}
.x71{left:279.436950px;}
.xe{left:281.427000px;}
.x1{left:284.738700px;}
.x43{left:287.609175px;}
.x40{left:288.874050px;}
.x49{left:290.232211px;}
.x70{left:293.889000px;}
.x2a{left:296.238136px;}
.x61{left:313.336950px;}
.x32{left:316.010470px;}
.x42{left:328.083417px;}
.x6b{left:329.289000px;}
.x48{left:330.715800px;}
.x51{left:332.418600px;}
.x36{left:334.123350px;}
.x41{left:335.514600px;}
.x1a{left:341.700000px;}
.x21{left:344.889000px;}
.x2f{left:347.094903px;}
.x29{left:356.724900px;}
.x33{left:366.400800px;}
.x2e{left:370.888050px;}
.x5e{left:372.736500px;}
.x31{left:377.393100px;}
.x28{left:386.367525px;}
.x2c{left:392.914050px;}
.x26{left:400.200750px;}
.x6c{left:456.789000px;}
.x5b{left:484.533300px;}
.x5f{left:517.338000px;}
.x57{left:530.130900px;}
.x55{left:541.975050px;}
.x53{left:555.036600px;}
.x60{left:570.736950px;}
.x16{left:582.000000px;}
.x6d{left:584.289000px;}
.x3{left:591.130500px;}
.x6e{left:592.389000px;}
.x37{left:736.225950px;}
.x67{left:737.236950px;}
@media print{
.v4{vertical-align:-52.150928pt;}
.v5{vertical-align:-49.053693pt;}
.v6{vertical-align:-32.789018pt;}
.v2{vertical-align:-18.559467pt;}
.v3{vertical-align:-8.533333pt;}
.v7{vertical-align:-1.650866pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:15.985067pt;}
.v1{vertical-align:32.000000pt;}
.ls7d{letter-spacing:-2.133333pt;}
.ls57{letter-spacing:-2.026667pt;}
.ls54{letter-spacing:-1.760000pt;}
.ls21{letter-spacing:-1.536000pt;}
.ls5b{letter-spacing:-1.280000pt;}
.ls70{letter-spacing:-1.173333pt;}
.ls53{letter-spacing:-1.091200pt;}
.ls51{letter-spacing:-1.066667pt;}
.ls28{letter-spacing:-1.056000pt;}
.ls52{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.816000pt;}
.ls20{letter-spacing:-0.810667pt;}
.ls7b{letter-spacing:-0.739200pt;}
.ls75{letter-spacing:-0.704000pt;}
.ls5a{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.554667pt;}
.ls25{letter-spacing:-0.544000pt;}
.ls72{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.480000pt;}
.ls84{letter-spacing:-0.469333pt;}
.ls74{letter-spacing:-0.341333pt;}
.ls58{letter-spacing:-0.281600pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.170240pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls67{letter-spacing:-0.127247pt;}
.ls80{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.085120pt;}
.ls7c{letter-spacing:-0.074667pt;}
.ls1d{letter-spacing:-0.069440pt;}
.ls71{letter-spacing:-0.066414pt;}
.ls76{letter-spacing:-0.037333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.085120pt;}
.ls1b{letter-spacing:0.090560pt;}
.lse{letter-spacing:0.090667pt;}
.lsa{letter-spacing:0.096000pt;}
.ls68{letter-spacing:0.106667pt;}
.ls85{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.138880pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.170240pt;}
.lsb{letter-spacing:0.177067pt;}
.ls1c{letter-spacing:0.181120pt;}
.ls62{letter-spacing:0.208000pt;}
.ls29{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.362667pt;}
.ls2e{letter-spacing:0.373333pt;}
.ls82{letter-spacing:0.405333pt;}
.ls81{letter-spacing:0.421333pt;}
.ls48{letter-spacing:0.426667pt;}
.ls6e{letter-spacing:0.432000pt;}
.ls10{letter-spacing:0.453333pt;}
.ls5d{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.816000pt;}
.ls59{letter-spacing:0.853333pt;}
.ls63{letter-spacing:0.890667pt;}
.ls31{letter-spacing:0.906667pt;}
.ls69{letter-spacing:0.938667pt;}
.ls55{letter-spacing:1.066667pt;}
.ls56{letter-spacing:1.173333pt;}
.ls83{letter-spacing:1.440000pt;}
.ls78{letter-spacing:1.648000pt;}
.ls45{letter-spacing:1.653333pt;}
.ls6a{letter-spacing:1.658667pt;}
.ls35{letter-spacing:1.973333pt;}
.ls4f{letter-spacing:2.240000pt;}
.ls39{letter-spacing:2.318933pt;}
.ls47{letter-spacing:2.346667pt;}
.ls4b{letter-spacing:2.613333pt;}
.ls6b{letter-spacing:3.014400pt;}
.ls3f{letter-spacing:3.093333pt;}
.ls11{letter-spacing:3.101867pt;}
.ls2f{letter-spacing:3.200000pt;}
.ls33{letter-spacing:3.253333pt;}
.ls7e{letter-spacing:3.571200pt;}
.ls65{letter-spacing:3.573333pt;}
.ls37{letter-spacing:3.680000pt;}
.ls73{letter-spacing:4.278400pt;}
.ls4{letter-spacing:10.163328pt;}
.ls6{letter-spacing:10.299520pt;}
.ls1{letter-spacing:10.384640pt;}
.ls5{letter-spacing:10.469760pt;}
.ls2d{letter-spacing:10.538667pt;}
.ls15{letter-spacing:11.520000pt;}
.ls16{letter-spacing:12.240000pt;}
.ls9{letter-spacing:12.816000pt;}
.ls3d{letter-spacing:13.866667pt;}
.ls13{letter-spacing:13.872000pt;}
.ls61{letter-spacing:14.400000pt;}
.ls64{letter-spacing:14.453333pt;}
.ls60{letter-spacing:14.933333pt;}
.ls5e{letter-spacing:15.146667pt;}
.ls5f{letter-spacing:15.466667pt;}
.ls3c{letter-spacing:16.173867pt;}
.ls3b{letter-spacing:16.185600pt;}
.ls38{letter-spacing:17.054933pt;}
.ls6f{letter-spacing:17.947733pt;}
.ls79{letter-spacing:19.733333pt;}
.ls6d{letter-spacing:22.214400pt;}
.ls7f{letter-spacing:24.000000pt;}
.ls66{letter-spacing:25.971200pt;}
.ls3a{letter-spacing:114.506667pt;}
.ls49{letter-spacing:126.346667pt;}
.ls40{letter-spacing:128.185600pt;}
.ls4c{letter-spacing:134.226133pt;}
.ls43{letter-spacing:134.771200pt;}
.ls4e{letter-spacing:136.521600pt;}
.ls4d{letter-spacing:136.707200pt;}
.ls4a{letter-spacing:138.678400pt;}
.ls34{letter-spacing:142.400000pt;}
.ls41{letter-spacing:142.921600pt;}
.ls36{letter-spacing:143.466667pt;}
.ls7a{letter-spacing:143.808000pt;}
.ls30{letter-spacing:144.533333pt;}
.ls42{letter-spacing:146.828800pt;}
.ls44{letter-spacing:149.333333pt;}
.ls46{letter-spacing:151.281067pt;}
.ls32{letter-spacing:153.493333pt;}
.ls50{letter-spacing:157.333333pt;}
.ls3e{letter-spacing:159.413333pt;}
.ls6c{letter-spacing:711.870919pt;}
.ls2c{letter-spacing:784.000000pt;}
.ls5c{letter-spacing:838.003729pt;}
.wsa{word-spacing:-69.440000pt;}
.wsa7{word-spacing:-37.031784pt;}
.ws94{word-spacing:-35.136000pt;}
.ws8e{word-spacing:-31.252594pt;}
.ws90{word-spacing:-29.280000pt;}
.wsae{word-spacing:-23.424000pt;}
.ws1c{word-spacing:-22.938667pt;}
.ws9{word-spacing:-22.730560pt;}
.ws18{word-spacing:-22.666667pt;}
.ws8{word-spacing:-22.640000pt;}
.ws1f{word-spacing:-21.850667pt;}
.wsa6{word-spacing:-20.496000pt;}
.ws6d{word-spacing:-16.776205pt;}
.wsb4{word-spacing:-16.091467pt;}
.wsa4{word-spacing:-16.000000pt;}
.ws6b{word-spacing:-15.905867pt;}
.ws6c{word-spacing:-15.778620pt;}
.ws68{word-spacing:-14.780953pt;}
.ws8b{word-spacing:-14.231600pt;}
.ws66{word-spacing:-14.019067pt;}
.ws14{word-spacing:-13.872000pt;}
.ws69{word-spacing:-13.706667pt;}
.ws27{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.344000pt;}
.ws51{word-spacing:-13.333333pt;}
.ws2{word-spacing:-13.200000pt;}
.ws4f{word-spacing:-13.120000pt;}
.ws23{word-spacing:-12.528000pt;}
.ws50{word-spacing:-12.373333pt;}
.ws72{word-spacing:-12.266667pt;}
.wse{word-spacing:-12.144000pt;}
.ws10{word-spacing:-12.096000pt;}
.ws11{word-spacing:-12.000000pt;}
.wsc5{word-spacing:-11.605333pt;}
.ws24{word-spacing:-11.472000pt;}
.wsb{word-spacing:-11.360000pt;}
.wsb6{word-spacing:-11.200000pt;}
.ws13{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.640000pt;}
.ws7{word-spacing:-10.554880pt;}
.wsaf{word-spacing:-10.538667pt;}
.ws5{word-spacing:-10.469760pt;}
.wsa1{word-spacing:-10.325333pt;}
.wsc4{word-spacing:-10.197333pt;}
.ws16{word-spacing:-9.856000pt;}
.wsb0{word-spacing:-9.600000pt;}
.wsb3{word-spacing:-9.386667pt;}
.ws91{word-spacing:-9.333333pt;}
.wsa5{word-spacing:-9.296000pt;}
.ws17{word-spacing:-9.130667pt;}
.wsa3{word-spacing:-8.800000pt;}
.ws8a{word-spacing:-8.301733pt;}
.wsbd{word-spacing:-8.272000pt;}
.ws8c{word-spacing:-8.235319pt;}
.ws67{word-spacing:-8.177733pt;}
.wsa2{word-spacing:-8.096000pt;}
.wsb1{word-spacing:-8.060800pt;}
.ws52{word-spacing:-7.708800pt;}
.wsc{word-spacing:-6.640000pt;}
.wsbc{word-spacing:-6.560000pt;}
.ws57{word-spacing:-1.173333pt;}
.ws19{word-spacing:-0.997333pt;}
.wsc6{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.816000pt;}
.ws60{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.544000pt;}
.ws5e{word-spacing:-0.533333pt;}
.ws47{word-spacing:-0.528000pt;}
.ws12{word-spacing:-0.383040pt;}
.ws7b{word-spacing:-0.373333pt;}
.ws41{word-spacing:-0.362667pt;}
.ws25{word-spacing:-0.341333pt;}
.wsc8{word-spacing:-0.320000pt;}
.ws42{word-spacing:-0.272000pt;}
.ws15{word-spacing:-0.265600pt;}
.ws6{word-spacing:-0.255360pt;}
.ws3d{word-spacing:-0.240000pt;}
.ws2e{word-spacing:-0.208320pt;}
.ws2c{word-spacing:-0.181120pt;}
.ws3{word-spacing:-0.170240pt;}
.ws32{word-spacing:-0.144000pt;}
.wsd4{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.090560pt;}
.ws0{word-spacing:-0.088000pt;}
.ws2b{word-spacing:-0.085120pt;}
.ws28{word-spacing:0.000000pt;}
.wsd{word-spacing:0.048000pt;}
.ws2a{word-spacing:0.085120pt;}
.ws1d{word-spacing:0.090667pt;}
.ws40{word-spacing:0.128000pt;}
.wsf{word-spacing:0.144000pt;}
.ws9e{word-spacing:0.160000pt;}
.ws7a{word-spacing:0.213333pt;}
.ws29{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.255360pt;}
.ws1a{word-spacing:0.272000pt;}
.ws44{word-spacing:0.277333pt;}
.ws84{word-spacing:0.320000pt;}
.wscb{word-spacing:0.341333pt;}
.ws62{word-spacing:0.426667pt;}
.ws4d{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.528000pt;}
.ws59{word-spacing:0.533333pt;}
.ws43{word-spacing:0.544000pt;}
.ws7d{word-spacing:0.693333pt;}
.ws5a{word-spacing:0.746667pt;}
.wsb7{word-spacing:0.810667pt;}
.ws33{word-spacing:0.816000pt;}
.ws98{word-spacing:0.960000pt;}
.ws5b{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.173333pt;}
.ws1e{word-spacing:1.178667pt;}
.wsbf{word-spacing:1.194667pt;}
.ws64{word-spacing:1.226667pt;}
.ws65{word-spacing:1.280000pt;}
.ws46{word-spacing:1.344000pt;}
.wsb9{word-spacing:1.408000pt;}
.ws5c{word-spacing:1.493333pt;}
.ws97{word-spacing:1.536000pt;}
.ws5f{word-spacing:1.600000pt;}
.wsc1{word-spacing:1.610667pt;}
.ws7c{word-spacing:1.813333pt;}
.wsba{word-spacing:1.877333pt;}
.ws81{word-spacing:2.026667pt;}
.ws83{word-spacing:2.080000pt;}
.wsb8{word-spacing:2.133333pt;}
.ws5d{word-spacing:2.293333pt;}
.ws21{word-spacing:2.366400pt;}
.ws30{word-spacing:2.400000pt;}
.ws61{word-spacing:2.560000pt;}
.ws63{word-spacing:2.666667pt;}
.ws37{word-spacing:2.736000pt;}
.wsa0{word-spacing:2.880000pt;}
.ws4e{word-spacing:3.040000pt;}
.wscd{word-spacing:3.328000pt;}
.ws45{word-spacing:3.456000pt;}
.ws71{word-spacing:3.520000pt;}
.wsab{word-spacing:3.733333pt;}
.ws58{word-spacing:3.946667pt;}
.ws22{word-spacing:3.984000pt;}
.ws96{word-spacing:4.160000pt;}
.wscc{word-spacing:4.266667pt;}
.ws39{word-spacing:4.320000pt;}
.ws9d{word-spacing:4.426667pt;}
.wsc2{word-spacing:4.608000pt;}
.ws38{word-spacing:4.656000pt;}
.ws4c{word-spacing:4.800000pt;}
.ws3a{word-spacing:4.944000pt;}
.ws82{word-spacing:5.013333pt;}
.ws8f{word-spacing:5.173333pt;}
.ws3b{word-spacing:5.280000pt;}
.ws79{word-spacing:5.333333pt;}
.ws99{word-spacing:5.866667pt;}
.ws4b{word-spacing:6.080000pt;}
.ws78{word-spacing:6.346667pt;}
.wsc3{word-spacing:6.400000pt;}
.ws95{word-spacing:6.458667pt;}
.wsce{word-spacing:6.528000pt;}
.ws35{word-spacing:6.576000pt;}
.ws36{word-spacing:6.864000pt;}
.ws77{word-spacing:6.933333pt;}
.wsd0{word-spacing:7.125333pt;}
.wsa8{word-spacing:7.146667pt;}
.ws3c{word-spacing:7.200000pt;}
.wsbb{word-spacing:7.413333pt;}
.ws2f{word-spacing:7.536000pt;}
.wsc7{word-spacing:8.000000pt;}
.ws9c{word-spacing:8.213333pt;}
.ws6f{word-spacing:8.426667pt;}
.ws7f{word-spacing:9.066667pt;}
.wscf{word-spacing:9.258667pt;}
.ws9b{word-spacing:9.280000pt;}
.ws70{word-spacing:9.440000pt;}
.ws34{word-spacing:9.456000pt;}
.wsd3{word-spacing:9.600000pt;}
.ws7e{word-spacing:10.133333pt;}
.wsb2{word-spacing:10.212267pt;}
.ws20{word-spacing:10.416000pt;}
.ws6e{word-spacing:10.560000pt;}
.wsca{word-spacing:10.666667pt;}
.ws49{word-spacing:10.944000pt;}
.ws31{word-spacing:11.040000pt;}
.ws89{word-spacing:11.200000pt;}
.ws88{word-spacing:11.413333pt;}
.wsc9{word-spacing:11.733333pt;}
.ws80{word-spacing:11.893333pt;}
.ws48{word-spacing:12.000000pt;}
.ws86{word-spacing:12.266667pt;}
.ws85{word-spacing:12.480000pt;}
.ws87{word-spacing:12.746667pt;}
.wsd2{word-spacing:12.800000pt;}
.wsaa{word-spacing:13.226667pt;}
.wsa9{word-spacing:13.333333pt;}
.wsac{word-spacing:13.546667pt;}
.wsb5{word-spacing:13.637738pt;}
.wsad{word-spacing:13.813333pt;}
.wsc0{word-spacing:14.613333pt;}
.wsbe{word-spacing:15.545600pt;}
.ws9f{word-spacing:15.680000pt;}
.ws73{word-spacing:16.320000pt;}
.wsd1{word-spacing:17.066667pt;}
.ws76{word-spacing:18.880000pt;}
.ws75{word-spacing:19.733333pt;}
.ws74{word-spacing:19.946667pt;}
.ws55{word-spacing:79.229867pt;}
.ws54{word-spacing:108.707200pt;}
.ws56{word-spacing:113.923200pt;}
.ws92{word-spacing:256.128000pt;}
.ws6a{word-spacing:359.917951pt;}
.ws93{word-spacing:403.648000pt;}
.ws53{word-spacing:444.746667pt;}
.ws8d{word-spacing:460.819208pt;}
._38{margin-left:-1048.170667pt;}
._2e{margin-left:-798.037333pt;}
._48{margin-left:-580.704242pt;}
._45{margin-left:-408.320000pt;}
._43{margin-left:-392.448000pt;}
._17{margin-left:-366.035344pt;}
._36{margin-left:-364.239381pt;}
._46{margin-left:-351.104000pt;}
._13{margin-left:-333.541634pt;}
._3c{margin-left:-329.344000pt;}
._1a{margin-left:-326.718195pt;}
._1c{margin-left:-277.054191pt;}
._49{margin-left:-274.428587pt;}
._23{margin-left:-268.872770pt;}
._24{margin-left:-234.262920pt;}
._28{margin-left:-231.405816pt;}
._20{margin-left:-226.435918pt;}
._15{margin-left:-216.677222pt;}
._37{margin-left:-203.328000pt;}
._44{margin-left:-201.984000pt;}
._16{margin-left:-197.279639pt;}
._2b{margin-left:-174.350219pt;}
._4c{margin-left:-164.969716pt;}
._35{margin-left:-154.304000pt;}
._18{margin-left:-153.088208pt;}
._27{margin-left:-151.196518pt;}
._4b{margin-left:-149.328811pt;}
._39{margin-left:-146.533333pt;}
._41{margin-left:-137.984000pt;}
._4a{margin-left:-137.015913pt;}
._1b{margin-left:-136.103019pt;}
._19{margin-left:-133.797190pt;}
._3a{margin-left:-132.085333pt;}
._14{margin-left:-126.339829pt;}
._11{margin-left:-124.265007pt;}
._3d{margin-left:-121.216000pt;}
._2f{margin-left:-120.218366pt;}
._2c{margin-left:-118.220789pt;}
._33{margin-left:-116.640467pt;}
._32{margin-left:-106.496000pt;}
._12{margin-left:-105.423381pt;}
._3e{margin-left:-104.000000pt;}
._3f{margin-left:-98.912000pt;}
._21{margin-left:-91.999533pt;}
._3b{margin-left:-80.416000pt;}
._30{margin-left:-79.408619pt;}
._42{margin-left:-77.616000pt;}
._2a{margin-left:-74.582772pt;}
._22{margin-left:-72.403505pt;}
._47{margin-left:-71.493333pt;}
._34{margin-left:-68.032000pt;}
._40{margin-left:-66.207325pt;}
._31{margin-left:-48.000000pt;}
._29{margin-left:-42.405254pt;}
._26{margin-left:-29.454550pt;}
._9{margin-left:-3.916800pt;}
._7{margin-left:-2.729333pt;}
._0{margin-left:-1.592800pt;}
._1{width:1.104000pt;}
._4{width:2.277333pt;}
._5{width:3.992800pt;}
._b{width:5.340267pt;}
._25{width:7.178667pt;}
._2d{width:8.819733pt;}
._a{width:10.378400pt;}
._1e{width:12.154133pt;}
._1f{width:13.326667pt;}
._6{width:15.456000pt;}
._3{width:17.546400pt;}
._2{width:21.497920pt;}
._1d{width:32.001867pt;}
._c{width:147.946667pt;}
._d{width:152.320000pt;}
._f{width:577.780267pt;}
._10{width:727.850667pt;}
._8{width:849.210667pt;}
._e{width:913.210133pt;}
.fs7{font-size:26.560000pt;}
.fsd{font-size:26.666667pt;}
.fs11{font-size:32.710933pt;}
.fs15{font-size:33.206933pt;}
.fsf{font-size:35.200000pt;}
.fs18{font-size:37.333333pt;}
.fs1b{font-size:37.546667pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.440000pt;}
.fsc{font-size:45.866667pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:53.333333pt;}
.fs10{font-size:56.076267pt;}
.fs16{font-size:56.926400pt;}
.fs12{font-size:59.123814pt;}
.fs17{font-size:60.010756pt;}
.fs13{font-size:63.623467pt;}
.fs3{font-size:64.000000pt;}
.fs1c{font-size:64.365867pt;}
.fs14{font-size:67.104818pt;}
.fs1a{font-size:67.453158pt;}
.fs19{font-size:67.478639pt;}
.fs1d{font-size:67.809114pt;}
.fsb{font-size:69.333333pt;}
.fs5{font-size:69.440000pt;}
.fs0{font-size:88.000000pt;}
.fs9{font-size:88.533333pt;}
.fs4{font-size:90.560000pt;}
.fsa{font-size:90.666667pt;}
.y9{bottom:-729.576373pt;}
.y8{bottom:-716.297653pt;}
.y26{bottom:-649.902533pt;}
.y25{bottom:-621.610533pt;}
.y24{bottom:-606.970533pt;}
.y23{bottom:-592.330533pt;}
.y22{bottom:-562.966533pt;}
.y21{bottom:-548.326533pt;}
.y20{bottom:-533.602533pt;}
.y1f{bottom:-518.962533pt;}
.y1e{bottom:-504.322533pt;}
.y1d{bottom:-489.598533pt;}
.y1c{bottom:-474.958533pt;}
.y1b{bottom:-460.318533pt;}
.y1a{bottom:-445.594533pt;}
.y19{bottom:-430.954533pt;}
.y18{bottom:-416.314533pt;}
.y17{bottom:-401.590533pt;}
.y16{bottom:-386.950533pt;}
.y15{bottom:-372.310533pt;}
.y14{bottom:-357.586533pt;}
.y13{bottom:-342.946533pt;}
.y12{bottom:-328.306533pt;}
.y11{bottom:-298.942533pt;}
.y53{bottom:-283.542800pt;}
.y52{bottom:-270.209467pt;}
.y6b{bottom:-240.876133pt;}
.y10{bottom:-239.262533pt;}
.y6a{bottom:-227.542800pt;}
.yf{bottom:-225.822533pt;}
.ye{bottom:-212.542667pt;}
.yd{bottom:-191.822533pt;}
.y69{bottom:-167.009467pt;}
.yc{bottom:-154.549813pt;}
.y68{bottom:-151.009467pt;}
.yb{bottom:-127.902533pt;}
.y67{bottom:-119.009467pt;}
.ya{bottom:-87.342667pt;}
.y66{bottom:-73.676133pt;}
.y65{bottom:-45.404133pt;}
.y64{bottom:-30.740133pt;}
.y2b{bottom:-28.346400pt;}
.y33{bottom:-26.534133pt;}
.y63{bottom:-16.076133pt;}
.y32{bottom:-13.200800pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.062107pt;}
.y115{bottom:7.998933pt;}
.yf2{bottom:8.000267pt;}
.y118{bottom:8.001600pt;}
.y13a{bottom:21.332267pt;}
.y6{bottom:21.937467pt;}
.y128{bottom:30.800400pt;}
.ye1{bottom:31.278933pt;}
.ye7{bottom:31.279200pt;}
.yea{bottom:31.686933pt;}
.ye2{bottom:31.691650pt;}
.ye8{bottom:31.691916pt;}
.y107{bottom:33.000267pt;}
.y5{bottom:52.657333pt;}
.y2a{bottom:60.591867pt;}
.y29{bottom:72.591867pt;}
.y162{bottom:82.798800pt;}
.y28{bottom:84.591867pt;}
.y4{bottom:86.897333pt;}
.y9c{bottom:90.166933pt;}
.y161{bottom:96.132133pt;}
.y137{bottom:104.398800pt;}
.y160{bottom:109.465467pt;}
.y4d{bottom:113.599867pt;}
.y2d{bottom:113.600533pt;}
.y136{bottom:120.398800pt;}
.y9b{bottom:121.366933pt;}
.y15f{bottom:122.798800pt;}
.y15e{bottom:136.132133pt;}
.y135{bottom:136.398800pt;}
.y15d{bottom:149.465467pt;}
.y9a{bottom:153.366933pt;}
.y110{bottom:158.532133pt;}
.y15c{bottom:162.798800pt;}
.y99{bottom:168.833600pt;}
.y10f{bottom:174.532133pt;}
.y15b{bottom:176.132133pt;}
.y98{bottom:184.033600pt;}
.y12c{bottom:184.690667pt;}
.y12e{bottom:188.690667pt;}
.y15a{bottom:189.465467pt;}
.y10e{bottom:190.532133pt;}
.y133{bottom:197.069333pt;}
.y97{bottom:199.500267pt;}
.y130{bottom:201.074667pt;}
.y134{bottom:201.198800pt;}
.y159{bottom:202.798800pt;}
.yf7{bottom:202.798933pt;}
.y12d{bottom:207.025333pt;}
.y132{bottom:207.028000pt;}
.y12f{bottom:211.026667pt;}
.y45{bottom:211.608400pt;}
.y2e{bottom:214.488000pt;}
.y96{bottom:214.700267pt;}
.y158{bottom:216.132133pt;}
.y131{bottom:218.190667pt;}
.yf6{bottom:218.798933pt;}
.y10d{bottom:222.532133pt;}
.y44{bottom:226.272400pt;}
.y95{bottom:230.166933pt;}
.y4b{bottom:230.620533pt;}
.yf5{bottom:234.798933pt;}
.y43{bottom:240.936400pt;}
.y4a{bottom:243.953867pt;}
.y127{bottom:245.065333pt;}
.y94{bottom:245.366933pt;}
.y157{bottom:245.998800pt;}
.y124{bottom:248.585733pt;}
.yf4{bottom:250.798933pt;}
.y126{bottom:252.608533pt;}
.y12a{bottom:261.157200pt;}
.y129{bottom:265.180000pt;}
.y12b{bottom:265.198800pt;}
.y93{bottom:268.833600pt;}
.y10c{bottom:269.998800pt;}
.y42{bottom:271.092400pt;}
.y125{bottom:271.845893pt;}
.y92{bottom:284.033600pt;}
.y41{bottom:285.756400pt;}
.y10b{bottom:285.998800pt;}
.y156{bottom:293.998800pt;}
.yf1{bottom:295.465333pt;}
.yf0{bottom:299.465733pt;}
.y91{bottom:299.500267pt;}
.y40{bottom:300.420400pt;}
.y10a{bottom:301.998800pt;}
.yf3{bottom:303.598933pt;}
.y49{bottom:304.487200pt;}
.y155{bottom:309.998800pt;}
.y90{bottom:314.700267pt;}
.y3f{bottom:315.084400pt;}
.yd4{bottom:315.888667pt;}
.y109{bottom:317.998800pt;}
.y48{bottom:320.487200pt;}
.y154{bottom:325.998800pt;}
.y123{bottom:326.798800pt;}
.y3e{bottom:329.748400pt;}
.y8f{bottom:330.166933pt;}
.yd3{bottom:331.888667pt;}
.y153{bottom:341.998800pt;}
.y122{bottom:342.798800pt;}
.y3d{bottom:344.412400pt;}
.y8e{bottom:345.366933pt;}
.y148{bottom:346.265600pt;}
.y106{bottom:346.665333pt;}
.yd2{bottom:347.888800pt;}
.y102{bottom:351.454933pt;}
.y47{bottom:352.487200pt;}
.yef{bottom:354.798800pt;}
.y105{bottom:355.454933pt;}
.y152{bottom:357.998800pt;}
.y3c{bottom:359.076400pt;}
.y147{bottom:362.265600pt;}
.yd1{bottom:363.888800pt;}
.y101{bottom:363.998933pt;}
.y104{bottom:367.998933pt;}
.y108{bottom:368.132133pt;}
.yee{bottom:370.798933pt;}
.y3b{bottom:373.740400pt;}
.y151{bottom:373.998800pt;}
.y103{bottom:375.665600pt;}
.y146{bottom:378.265600pt;}
.y8d{bottom:386.700267pt;}
.yed{bottom:386.798933pt;}
.y3a{bottom:388.404400pt;}
.y150{bottom:389.998800pt;}
.y121{bottom:390.265600pt;}
.yd0{bottom:395.888800pt;}
.y46{bottom:397.820533pt;}
.y8c{bottom:402.700267pt;}
.y14f{bottom:405.998800pt;}
.ye0{bottom:415.733333pt;}
.y39{bottom:417.732400pt;}
.y8b{bottom:418.700267pt;}
.y6d{bottom:419.474533pt;}
.ye3{bottom:420.587600pt;}
.ydd{bottom:420.590994pt;}
.y14e{bottom:421.998800pt;}
.yeb{bottom:424.145733pt;}
.y145{bottom:425.732267pt;}
.ycf{bottom:427.888800pt;}
.y100{bottom:428.398933pt;}
.ydc{bottom:430.519867pt;}
.ye6{bottom:432.342854pt;}
.y6c{bottom:432.807867pt;}
.y8a{bottom:434.700267pt;}
.ye9{bottom:435.894133pt;}
.yec{bottom:438.532267pt;}
.y4e{bottom:442.205333pt;}
.ye4{bottom:443.450574pt;}
.yde{bottom:443.453967pt;}
.ye5{bottom:443.865660pt;}
.ydf{bottom:443.869054pt;}
.yce{bottom:443.888800pt;}
.yff{bottom:444.398933pt;}
.y51{bottom:449.523867pt;}
.y89{bottom:450.700267pt;}
.y14d{bottom:453.998800pt;}
.y62{bottom:456.283733pt;}
.ycd{bottom:459.888800pt;}
.yfe{bottom:460.398933pt;}
.y88{bottom:466.700267pt;}
.y50{bottom:468.190533pt;}
.y61{bottom:470.947733pt;}
.ycc{bottom:475.888800pt;}
.yfd{bottom:476.398933pt;}
.y87{bottom:482.700267pt;}
.y60{bottom:485.611733pt;}
.y14c{bottom:485.998800pt;}
.y38{bottom:490.799067pt;}
.ycb{bottom:491.888800pt;}
.yfc{bottom:492.398933pt;}
.ydb{bottom:495.865600pt;}
.y4f{bottom:498.590533pt;}
.y86{bottom:498.700267pt;}
.y5f{bottom:500.275733pt;}
.y14b{bottom:501.998800pt;}
.yfb{bottom:508.398933pt;}
.y37{bottom:511.332267pt;}
.yda{bottom:511.865600pt;}
.y85{bottom:514.700267pt;}
.y5e{bottom:514.939733pt;}
.y14a{bottom:517.998800pt;}
.yca{bottom:523.888800pt;}
.yfa{bottom:524.398933pt;}
.y5d{bottom:529.603733pt;}
.y84{bottom:530.700267pt;}
.yf9{bottom:540.398933pt;}
.yd9{bottom:543.865600pt;}
.y5c{bottom:544.267733pt;}
.y83{bottom:546.700267pt;}
.y36{bottom:548.676533pt;}
.yc9{bottom:555.888800pt;}
.y5b{bottom:558.931733pt;}
.yd8{bottom:559.865600pt;}
.y82{bottom:562.700267pt;}
.y149{bottom:565.465467pt;}
.yf8{bottom:571.865600pt;}
.yc8{bottom:571.888800pt;}
.y5a{bottom:573.595733pt;}
.y35{bottom:575.332533pt;}
.yd7{bottom:575.865600pt;}
.y81{bottom:578.700267pt;}
.yc7{bottom:587.888800pt;}
.y80{bottom:594.700267pt;}
.y59{bottom:602.929067pt;}
.yd6{bottom:607.332133pt;}
.y7f{bottom:610.700267pt;}
.y120{bottom:613.198933pt;}
.y34{bottom:615.865867pt;}
.yc0{bottom:621.210177pt;}
.y7e{bottom:626.700267pt;}
.y11f{bottom:629.198933pt;}
.ybf{bottom:633.473600pt;}
.yc2{bottom:635.366398pt;}
.yc5{bottom:635.375696pt;}
.yc6{bottom:635.622133pt;}
.y7d{bottom:642.700267pt;}
.yc1{bottom:643.780602pt;}
.y11e{bottom:645.198933pt;}
.yc3{bottom:645.228035pt;}
.yc4{bottom:645.237333pt;}
.y7c{bottom:658.700267pt;}
.y11d{bottom:674.532000pt;}
.y7b{bottom:674.700267pt;}
.y58{bottom:675.995733pt;}
.ybe{bottom:680.955467pt;}
.y7a{bottom:690.700267pt;}
.y11b{bottom:693.198667pt;}
.y57{bottom:696.528933pt;}
.ybd{bottom:697.488800pt;}
.y11c{bottom:699.865600pt;}
.y31{bottom:706.532533pt;}
.y79{bottom:706.700267pt;}
.y11a{bottom:711.865333pt;}
.ybc{bottom:713.488800pt;}
.y170{bottom:722.143867pt;}
.y144{bottom:722.532267pt;}
.y78{bottom:722.700267pt;}
.y30{bottom:725.199200pt;}
.ybb{bottom:729.488800pt;}
.y119{bottom:730.532000pt;}
.y56{bottom:733.873200pt;}
.y16f{bottom:735.477200pt;}
.y143{bottom:738.532267pt;}
.y77{bottom:738.700267pt;}
.yba{bottom:745.488800pt;}
.y16e{bottom:748.810533pt;}
.y117{bottom:749.197333pt;}
.y142{bottom:754.532267pt;}
.y76{bottom:754.700267pt;}
.y2f{bottom:755.599200pt;}
.y55{bottom:760.529200pt;}
.y16d{bottom:762.143867pt;}
.y116{bottom:767.865333pt;}
.y75{bottom:770.700267pt;}
.y16c{bottom:775.477200pt;}
.ya6{bottom:778.478140pt;}
.ya2{bottom:778.492159pt;}
.ya8{bottom:782.417498pt;}
.yab{bottom:782.431517pt;}
.y140{bottom:783.865333pt;}
.yb1{bottom:784.123467pt;}
.y114{bottom:786.533333pt;}
.y74{bottom:786.700267pt;}
.ya4{bottom:787.576514pt;}
.ya0{bottom:787.590533pt;}
.y16b{bottom:788.810533pt;}
.y141{bottom:790.532267pt;}
.yb5{bottom:791.679160pt;}
.yaa{bottom:793.744904pt;}
.yad{bottom:795.174848pt;}
.yb2{bottom:795.184510pt;}
.yb7{bottom:795.186235pt;}
.yb8{bottom:795.186400pt;}
.ya5{bottom:797.684261pt;}
.ya1{bottom:797.698280pt;}
.yb9{bottom:798.288800pt;}
.yb0{bottom:800.623443pt;}
.yb4{bottom:800.625600pt;}
.y54{bottom:801.062533pt;}
.y16a{bottom:802.143867pt;}
.y13e{bottom:802.532000pt;}
.y73{bottom:802.700267pt;}
.ya9{bottom:802.829259pt;}
.yac{bottom:802.843278pt;}
.yae{bottom:804.119013pt;}
.yb3{bottom:804.128675pt;}
.yb6{bottom:804.130400pt;}
.y113{bottom:805.198667pt;}
.ya7{bottom:806.768617pt;}
.ya3{bottom:806.782636pt;}
.y13f{bottom:809.198933pt;}
.yaf{bottom:812.562933pt;}
.y169{bottom:815.477200pt;}
.y13c{bottom:821.197333pt;}
.y112{bottom:824.665333pt;}
.y13d{bottom:827.865600pt;}
.y168{bottom:828.810533pt;}
.y3{bottom:831.792000pt;}
.y72{bottom:832.033600pt;}
.y139{bottom:840.666667pt;}
.y167{bottom:842.143867pt;}
.y13b{bottom:848.665600pt;}
.y111{bottom:851.865600pt;}
.y27{bottom:854.338533pt;}
.y166{bottom:855.477200pt;}
.y4c{bottom:861.862667pt;}
.y71{bottom:865.900267pt;}
.y9f{bottom:866.555467pt;}
.y165{bottom:868.810533pt;}
.y1{bottom:879.110667pt;}
.y138{bottom:881.198933pt;}
.y9e{bottom:881.755467pt;}
.y70{bottom:881.900267pt;}
.y164{bottom:882.143867pt;}
.y2c{bottom:891.153333pt;}
.yd5{bottom:910.532267pt;}
.y163{bottom:911.477200pt;}
.y9d{bottom:912.422133pt;}
.y6f{bottom:913.366933pt;}
.y2{bottom:918.559067pt;}
.y6e{bottom:920.499333pt;}
.h12{height:-476.350667pt;}
.h1c{height:-30.366667pt;}
.h3f{height:18.528646pt;}
.h3d{height:18.666667pt;}
.h23{height:22.728349pt;}
.h2c{height:23.072982pt;}
.hc{height:23.369688pt;}
.h18{height:23.463542pt;}
.h35{height:23.998667pt;}
.h3a{height:25.940104pt;}
.h44{height:26.088333pt;}
.h25{height:28.781788pt;}
.h2f{height:29.218210pt;}
.h8{height:29.571719pt;}
.h10{height:29.625000pt;}
.h15{height:29.645833pt;}
.h48{height:31.997333pt;}
.h11{height:32.000000pt;}
.hd{height:32.531250pt;}
.h34{height:32.848958pt;}
.h40{height:33.036667pt;}
.h1e{height:33.328125pt;}
.he{height:33.351562pt;}
.h5{height:34.359375pt;}
.h3{height:34.368000pt;}
.h3b{height:34.580729pt;}
.h1a{height:36.145833pt;}
.h1b{height:37.057292pt;}
.hf{height:37.447813pt;}
.h19{height:37.541667pt;}
.h24{height:38.963148pt;}
.h3e{height:39.520833pt;}
.h2e{height:39.553841pt;}
.h29{height:44.207126pt;}
.h9{height:44.468750pt;}
.h43{height:44.722963pt;}
.h2d{height:45.065333pt;}
.h42{height:46.936000pt;}
.h39{height:48.000000pt;}
.h26{height:49.340543pt;}
.h20{height:49.401042pt;}
.h30{height:50.088561pt;}
.h31{height:51.078324pt;}
.h22{height:51.941737pt;}
.h32{height:52.729190pt;}
.h27{height:54.764587pt;}
.h33{height:55.586135pt;}
.h38{height:56.312500pt;}
.h41{height:56.634420pt;}
.h7{height:58.652344pt;}
.h28{height:58.932479pt;}
.h14{height:59.007812pt;}
.h36{height:59.281250pt;}
.h45{height:59.620141pt;}
.h2a{height:62.157148pt;}
.h3c{height:62.479806pt;}
.h37{height:62.503407pt;}
.h46{height:62.809516pt;}
.ha{height:62.923281pt;}
.h16{height:62.997396pt;}
.hb{height:63.572812pt;}
.h17{height:63.869271pt;}
.h2{height:66.352000pt;}
.h47{height:75.266317pt;}
.h4{height:98.017333pt;}
.h6{height:98.030667pt;}
.h13{height:200.314667pt;}
.h1d{height:389.290667pt;}
.h2b{height:901.102667pt;}
.h49{height:902.046667pt;}
.h21{height:902.992000pt;}
.h1f{height:903.937333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:-4.265333pt;}
.w13{width:66.134667pt;}
.w11{width:113.333333pt;}
.w12{width:113.334667pt;}
.we{width:124.000000pt;}
.wd{width:128.534667pt;}
.wf{width:139.998667pt;}
.w10{width:150.666667pt;}
.w3{width:155.232000pt;}
.wc{width:187.466667pt;}
.w9{width:215.200000pt;}
.w8{width:255.198667pt;}
.w4{width:379.468000pt;}
.wa{width:412.800000pt;}
.w14{width:721.889333pt;}
.w5{width:722.834667pt;}
.w7{width:723.778667pt;}
.w6{width:723.977333pt;}
.wb{width:724.921333pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x7{left:-468.269360pt;}
.xa{left:-456.023760pt;}
.xb{left:-451.546000pt;}
.x9{left:-422.426000pt;}
.xd{left:-409.146000pt;}
.x8{left:-368.346000pt;}
.xc{left:-338.104400pt;}
.x4{left:-307.146000pt;}
.x5{left:-279.946000pt;}
.x6{left:-271.706000pt;}
.x0{left:0.000000pt;}
.x25{left:1.889333pt;}
.x13{left:2.834667pt;}
.x72{left:3.780000pt;}
.x5d{left:6.933733pt;}
.x4f{left:30.490267pt;}
.x10{left:49.889733pt;}
.xf{left:51.779467pt;}
.x73{left:52.846267pt;}
.x56{left:54.055600pt;}
.x24{left:57.066667pt;}
.x1d{left:59.901333pt;}
.x66{left:63.250667pt;}
.x23{left:64.800000pt;}
.x38{left:66.689733pt;}
.x1c{left:67.634667pt;}
.x74{left:68.846267pt;}
.x12{left:76.800000pt;}
.x47{left:87.844000pt;}
.x50{left:89.104933pt;}
.x35{left:90.417622pt;}
.x65{left:95.747067pt;}
.x4b{left:98.554933pt;}
.x5a{left:105.818568pt;}
.x2b{left:107.828555pt;}
.x64{left:115.125600pt;}
.x4d{left:121.841256pt;}
.x63{left:125.875467pt;}
.x27{left:128.036482pt;}
.x46{left:133.612946pt;}
.x30{left:134.878353pt;}
.x11{left:136.434667pt;}
.x3f{left:138.516800pt;}
.x18{left:140.533333pt;}
.x6a{left:142.034667pt;}
.x1f{left:143.368000pt;}
.x68{left:145.856197pt;}
.x19{left:147.242667pt;}
.x17{left:148.800000pt;}
.x20{left:150.077333pt;}
.x1e{left:151.634667pt;}
.x3b{left:152.800000pt;}
.x34{left:153.908173pt;}
.x4e{left:155.612667pt;}
.x2d{left:160.387301pt;}
.x69{left:161.394133pt;}
.x62{left:164.580133pt;}
.x3d{left:165.840000pt;}
.x54{left:168.703827pt;}
.x45{left:170.894531pt;}
.x4a{left:173.483691pt;}
.x44{left:175.572386pt;}
.x59{left:177.816547pt;}
.x3a{left:185.840000pt;}
.x1b{left:192.533333pt;}
.x22{left:195.368000pt;}
.x52{left:196.277600pt;}
.x2{left:209.887200pt;}
.x6f{left:211.901333pt;}
.x3e{left:214.223467pt;}
.x5c{left:217.971600pt;}
.x3c{left:225.472000pt;}
.x39{left:230.848000pt;}
.x58{left:231.787067pt;}
.x4c{left:235.577467pt;}
.x14{left:237.600000pt;}
.x15{left:245.866667pt;}
.x71{left:248.388400pt;}
.xe{left:250.157333pt;}
.x1{left:253.101067pt;}
.x43{left:255.652600pt;}
.x40{left:256.776933pt;}
.x49{left:257.984187pt;}
.x70{left:261.234667pt;}
.x2a{left:263.322787pt;}
.x61{left:278.521733pt;}
.x32{left:280.898195pt;}
.x42{left:291.629704pt;}
.x6b{left:292.701333pt;}
.x48{left:293.969600pt;}
.x51{left:295.483200pt;}
.x36{left:296.998533pt;}
.x41{left:298.235200pt;}
.x1a{left:303.733333pt;}
.x21{left:306.568000pt;}
.x2f{left:308.528803pt;}
.x29{left:317.088800pt;}
.x33{left:325.689600pt;}
.x2e{left:329.678267pt;}
.x5e{left:331.321333pt;}
.x31{left:335.460533pt;}
.x28{left:343.437800pt;}
.x2c{left:349.256933pt;}
.x26{left:355.734000pt;}
.x6c{left:406.034667pt;}
.x5b{left:430.696267pt;}
.x5f{left:459.856000pt;}
.x57{left:471.227467pt;}
.x55{left:481.755600pt;}
.x53{left:493.365867pt;}
.x60{left:507.321733pt;}
.x16{left:517.333333pt;}
.x6d{left:519.368000pt;}
.x3{left:525.449333pt;}
.x6e{left:526.568000pt;}
.x37{left:654.423067pt;}
.x67{left:655.321733pt;}
}




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