
    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_1842059e935596ea9323c726.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_96f4092a2907865ce7623fb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_df6ca2ec49617d73f1c88b3a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0761aedbe0fa179c1f4b67f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_80ea38ced87b86eaf87e925a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_56fe5d437858af972db8eb20.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_061abdf65984de36e4a52461.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.822000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_45159afc00b0bae39090a3fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.710000;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_2c3353aa6cf4687405840c7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_23373a2f88fd23ab7ee62c42.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.731000;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_4376e8433d40c8b1e3f2e5a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ad7d5db7f16990cb9b20e0f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;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_8712a1cf0daa808aa8603675.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_0880f6f82b8e653d76d09371.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a2fbdfaa57ff82315c3cac9.woff2')format("woff");}.fff{font-family:fff;line-height:0.778000;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_9041fd7e6d7b58e24a85328a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.703450;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_5d5eefab3955ffac442df791.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.052000;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_a0f3a7e792e27e59d08b138d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.685000;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_e2e15e80d57b664de7e5983d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.722000;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_a9a238d22e1070e0a6623f01.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.737000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.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);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v27{vertical-align:-64.752000px;}
.v1a{vertical-align:-63.390000px;}
.v11{vertical-align:-54.150000px;}
.v18{vertical-align:-52.728000px;}
.v4{vertical-align:-49.446000px;}
.ve{vertical-align:-39.276000px;}
.v25{vertical-align:-18.930000px;}
.vf{vertical-align:-16.362000px;}
.v5{vertical-align:-10.134000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v22{vertical-align:2.994000px;}
.v23{vertical-align:17.274000px;}
.v1c{vertical-align:19.542000px;}
.v13{vertical-align:21.138000px;}
.vd{vertical-align:22.572000px;}
.va{vertical-align:23.754000px;}
.vc{vertical-align:25.776000px;}
.vb{vertical-align:27.030000px;}
.v1b{vertical-align:31.848000px;}
.v8{vertical-align:34.146000px;}
.v1e{vertical-align:35.808000px;}
.v10{vertical-align:39.276000px;}
.v1f{vertical-align:42.108000px;}
.v7{vertical-align:44.280000px;}
.v19{vertical-align:45.528000px;}
.v14{vertical-align:48.666000px;}
.v3{vertical-align:50.646000px;}
.v17{vertical-align:52.728000px;}
.v24{vertical-align:60.828000px;}
.v15{vertical-align:68.034000px;}
.v16{vertical-align:70.350000px;}
.v26{vertical-align:78.522000px;}
.v6{vertical-align:89.094000px;}
.v28{vertical-align:92.292000px;}
.v12{vertical-align:98.424000px;}
.v20{vertical-align:106.290000px;}
.v1d{vertical-align:111.930000px;}
.v2{vertical-align:132.006000px;}
.v9{vertical-align:133.986000px;}
.v21{vertical-align:138.132000px;}
.lsc{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000280px;}
.ls27{letter-spacing:0.000370px;}
.ls6e{letter-spacing:0.000455px;}
.ls9{letter-spacing:0.000993px;}
.ls5a{letter-spacing:0.001052px;}
.ls82{letter-spacing:0.001056px;}
.ls66{letter-spacing:0.001592px;}
.ls9f{letter-spacing:0.001611px;}
.ls37{letter-spacing:0.002017px;}
.ls69{letter-spacing:0.002137px;}
.ls44{letter-spacing:0.002682px;}
.ls6c{letter-spacing:0.002690px;}
.ls50{letter-spacing:0.002692px;}
.ls63{letter-spacing:0.002698px;}
.lse{letter-spacing:0.003239px;}
.ls0{letter-spacing:0.003652px;}
.ls1a{letter-spacing:0.003791px;}
.ls99{letter-spacing:0.005367px;}
.ls7a{letter-spacing:0.005823px;}
.ls38{letter-spacing:0.006314px;}
.ls7{letter-spacing:0.006993px;}
.lsa2{letter-spacing:0.010601px;}
.ls3e{letter-spacing:0.011905px;}
.ls30{letter-spacing:0.012324px;}
.ls93{letter-spacing:0.013556px;}
.lsa4{letter-spacing:0.014102px;}
.ls4f{letter-spacing:0.015245px;}
.ls9b{letter-spacing:0.018175px;}
.ls81{letter-spacing:0.018522px;}
.ls54{letter-spacing:0.024962px;}
.ls16{letter-spacing:0.024966px;}
.ls58{letter-spacing:0.025989px;}
.ls26{letter-spacing:0.027114px;}
.ls6f{letter-spacing:0.031370px;}
.ls98{letter-spacing:0.261818px;}
.ls4{letter-spacing:1.613941px;}
.ls20{letter-spacing:1.701820px;}
.ls1b{letter-spacing:1.767274px;}
.lsa6{letter-spacing:2.356366px;}
.ls86{letter-spacing:2.477976px;}
.ls29{letter-spacing:2.487275px;}
.ls41{letter-spacing:2.773595px;}
.ls78{letter-spacing:2.814548px;}
.ls5e{letter-spacing:2.984915px;}
.ls9a{letter-spacing:2.986053px;}
.ls60{letter-spacing:2.986059px;}
.ls5f{letter-spacing:2.986200px;}
.ls24{letter-spacing:2.988103px;}
.ls94{letter-spacing:2.989194px;}
.ls64{letter-spacing:2.989289px;}
.lsf{letter-spacing:2.990367px;}
.ls9d{letter-spacing:2.991537px;}
.ls23{letter-spacing:2.994103px;}
.ls21{letter-spacing:3.272730px;}
.ls34{letter-spacing:3.338185px;}
.ls6b{letter-spacing:3.730912px;}
.ls73{letter-spacing:3.749260px;}
.ls5c{letter-spacing:3.767414px;}
.ls61{letter-spacing:3.771990px;}
.ls4c{letter-spacing:3.794589px;}
.ls6d{letter-spacing:3.796367px;}
.ls74{letter-spacing:3.800503px;}
.ls4d{letter-spacing:3.801684px;}
.ls68{letter-spacing:3.802229px;}
.ls18{letter-spacing:4.712731px;}
.ls53{letter-spacing:5.094553px;}
.ls17{letter-spacing:5.344571px;}
.ls1c{letter-spacing:5.350571px;}
.ls95{letter-spacing:5.662328px;}
.ls42{letter-spacing:5.743488px;}
.ls65{letter-spacing:5.749488px;}
.lsa{letter-spacing:6.037336px;}
.ls11{letter-spacing:6.480005px;}
.ls80{letter-spacing:6.489059px;}
.ls7e{letter-spacing:6.513220px;}
.ls7d{letter-spacing:6.519220px;}
.ls49{letter-spacing:7.109392px;}
.ls51{letter-spacing:7.132277px;}
.ls48{letter-spacing:7.135599px;}
.ls55{letter-spacing:7.138277px;}
.ls4b{letter-spacing:7.153441px;}
.ls2c{letter-spacing:7.172915px;}
.ls88{letter-spacing:9.098189px;}
.ls6{letter-spacing:9.922750px;}
.ls15{letter-spacing:10.865464px;}
.lsaa{letter-spacing:10.912869px;}
.lsa7{letter-spacing:10.918663px;}
.ls10{letter-spacing:10.930918px;}
.ls90{letter-spacing:11.585464px;}
.ls2{letter-spacing:13.270183px;}
.ls5{letter-spacing:13.329959px;}
.lsa1{letter-spacing:13.483648px;}
.ls25{letter-spacing:14.530921px;}
.ls2a{letter-spacing:14.596376px;}
.ls40{letter-spacing:16.298195px;}
.ls91{letter-spacing:16.429105px;}
.lsa0{letter-spacing:16.456053px;}
.ls1{letter-spacing:16.617617px;}
.lsa3{letter-spacing:17.530053px;}
.ls9e{letter-spacing:17.535537px;}
.ls9c{letter-spacing:17.536053px;}
.ls83{letter-spacing:17.570367px;}
.ls8b{letter-spacing:18.080700px;}
.ls52{letter-spacing:18.080706px;}
.ls13{letter-spacing:18.130924px;}
.ls3f{letter-spacing:18.179412px;}
.ls3d{letter-spacing:18.179982px;}
.ls14{letter-spacing:18.196379px;}
.ls84{letter-spacing:18.261833px;}
.ls2e{letter-spacing:18.327288px;}
.ls76{letter-spacing:18.654561px;}
.ls8{letter-spacing:18.889090px;}
.ls7b{letter-spacing:19.590773px;}
.ls79{letter-spacing:19.905275px;}
.ls7f{letter-spacing:19.965050px;}
.ls8f{letter-spacing:20.543412px;}
.ls6a{letter-spacing:20.552744px;}
.ls45{letter-spacing:20.683654px;}
.ls96{letter-spacing:20.749108px;}
.ls8e{letter-spacing:21.175289px;}
.ls97{letter-spacing:21.358280px;}
.ls72{letter-spacing:21.469109px;}
.lsac{letter-spacing:21.534563px;}
.lsab{letter-spacing:21.600018px;}
.lsa8{letter-spacing:21.729191px;}
.ls4a{letter-spacing:21.796382px;}
.ls3b{letter-spacing:21.861836px;}
.ls3a{letter-spacing:22.581837px;}
.ls8c{letter-spacing:23.301838px;}
.ls39{letter-spacing:23.367292px;}
.ls31{letter-spacing:23.432747px;}
.ls59{letter-spacing:23.638338px;}
.ls2f{letter-spacing:23.825474px;}
.ls28{letter-spacing:24.806915px;}
.lsa5{letter-spacing:24.807537px;}
.ls46{letter-spacing:25.329734px;}
.ls33{letter-spacing:26.406103px;}
.ls7c{letter-spacing:26.540366px;}
.ls67{letter-spacing:26.705477px;}
.ls8a{letter-spacing:28.228631px;}
.ls87{letter-spacing:28.930933px;}
.ls77{letter-spacing:29.192752px;}
.ls75{letter-spacing:29.520025px;}
.ls36{letter-spacing:29.585479px;}
.ls43{letter-spacing:29.781843px;}
.ls32{letter-spacing:29.847298px;}
.ls3c{letter-spacing:29.912752px;}
.ls2d{letter-spacing:30.370934px;}
.ls56{letter-spacing:30.662706px;}
.ls5d{letter-spacing:30.698207px;}
.ls85{letter-spacing:30.894571px;}
.ls62{letter-spacing:31.680026px;}
.lsb{letter-spacing:32.727300px;}
.ls3{letter-spacing:36.526677px;}
.ls5b{letter-spacing:37.042338px;}
.ls12{letter-spacing:39.403669px;}
.ls19{letter-spacing:39.995424px;}
.ls22{letter-spacing:40.001424px;}
.lsa9{letter-spacing:51.508878px;}
.ls71{letter-spacing:107.174700px;}
.ls47{letter-spacing:125.348700px;}
.ls1d{letter-spacing:135.538204px;}
.ls1e{letter-spacing:141.818712px;}
.ls89{letter-spacing:144.858285px;}
.ls92{letter-spacing:144.872712px;}
.ls8d{letter-spacing:147.403759px;}
.ls70{letter-spacing:148.988712px;}
.ls4e{letter-spacing:178.520700px;}
.ls1f{letter-spacing:463.745841px;}
.ls57{letter-spacing:499.876780px;}
.ls2b{letter-spacing:512.509518px;}
.lsd{letter-spacing:1138.713676px;}
.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;}
}
.ws87{word-spacing:-79.985521px;}
.ws86{word-spacing:-65.454600px;}
.ws88{word-spacing:-53.568045px;}
.ws5b{word-spacing:-51.820407px;}
.ws4e{word-spacing:-47.323676px;}
.ws60{word-spacing:-47.288855px;}
.ws51{word-spacing:-47.258221px;}
.ws9a{word-spacing:-47.061857px;}
.wsa2{word-spacing:-43.157983px;}
.ws3f{word-spacing:-42.637126px;}
.ws6d{word-spacing:-39.979670px;}
.wse{word-spacing:-38.937826px;}
.ws90{word-spacing:-36.379667px;}
.ws44{word-spacing:-33.211407px;}
.ws62{word-spacing:-32.714209px;}
.ws3c{word-spacing:-31.771663px;}
.ws34{word-spacing:-31.706208px;}
.ws12{word-spacing:-29.875845px;}
.wsf{word-spacing:-29.015076px;}
.ws5e{word-spacing:-28.433478px;}
.ws1c{word-spacing:-26.899125px;}
.ws1{word-spacing:-25.781783px;}
.ws8c{word-spacing:-24.506202px;}
.ws61{word-spacing:-24.440748px;}
.wsa8{word-spacing:-24.375293px;}
.ws48{word-spacing:-21.953473px;}
.ws9f{word-spacing:-20.997836px;}
.ws70{word-spacing:-20.906199px;}
.ws13{word-spacing:-20.048736px;}
.wsa1{word-spacing:-19.331429px;}
.ws72{word-spacing:-19.313816px;}
.ws43{word-spacing:-18.183288px;}
.ws4f{word-spacing:-16.730196px;}
.ws91{word-spacing:-12.916630px;}
.ws6e{word-spacing:-12.041816px;}
.ws6b{word-spacing:-12.029816px;}
.ws8b{word-spacing:-9.280630px;}
.ws42{word-spacing:-8.405675px;}
.ws73{word-spacing:-8.135816px;}
.ws5f{word-spacing:-7.252370px;}
.ws5a{word-spacing:-6.803675px;}
.wsaf{word-spacing:-3.848730px;}
.ws63{word-spacing:-3.652367px;}
.wsb9{word-spacing:-3.521457px;}
.ws16{word-spacing:-2.379069px;}
.ws9e{word-spacing:-1.950547px;}
.wsb2{word-spacing:-1.754183px;}
.ws99{word-spacing:-1.230546px;}
.ws8f{word-spacing:-1.099637px;}
.ws8e{word-spacing:-1.034183px;}
.ws7b{word-spacing:-0.681446px;}
.ws8a{word-spacing:-0.379637px;}
.ws4{word-spacing:-0.227147px;}
.ws41{word-spacing:-0.052364px;}
.ws45{word-spacing:-0.047821px;}
.ws46{word-spacing:-0.016511px;}
.ws3e{word-spacing:-0.007339px;}
.ws25{word-spacing:0.000000px;}
.ws14{word-spacing:0.011955px;}
.ws40{word-spacing:0.013091px;}
.ws85{word-spacing:0.144000px;}
.ws92{word-spacing:0.625370px;}
.wsbc{word-spacing:0.817733px;}
.wsbe{word-spacing:0.890183px;}
.wsbf{word-spacing:0.955637px;}
.wsac{word-spacing:1.125819px;}
.ws68{word-spacing:1.191274px;}
.wsab{word-spacing:1.282910px;}
.wsaa{word-spacing:1.584001px;}
.ws80{word-spacing:1.597092px;}
.ws81{word-spacing:1.662547px;}
.wsa9{word-spacing:1.806547px;}
.ws50{word-spacing:2.827639px;}
.ws96{word-spacing:2.906184px;}
.ws17{word-spacing:2.940960px;}
.ws89{word-spacing:3.089457px;}
.ws32{word-spacing:3.154912px;}
.ws6{word-spacing:3.180062px;}
.wsb{word-spacing:3.239838px;}
.wsa7{word-spacing:3.285821px;}
.ws1b{word-spacing:3.299613px;}
.ws94{word-spacing:3.351276px;}
.ws10{word-spacing:3.359389px;}
.ws31{word-spacing:3.416730px;}
.ws3{word-spacing:3.419164px;}
.ws2b{word-spacing:3.482185px;}
.ws1a{word-spacing:3.538716px;}
.ws27{word-spacing:3.547639px;}
.ws19{word-spacing:3.598491px;}
.ws1f{word-spacing:3.613094px;}
.ws18{word-spacing:3.658267px;}
.ws22{word-spacing:3.678549px;}
.ws3d{word-spacing:3.744003px;}
.wsa6{word-spacing:3.770185px;}
.ws77{word-spacing:3.809458px;}
.ws93{word-spacing:3.835640px;}
.wsa3{word-spacing:3.861504px;}
.ws2a{word-spacing:3.874912px;}
.ws52{word-spacing:3.901094px;}
.ws28{word-spacing:3.940367px;}
.wsae{word-spacing:3.966549px;}
.ws4a{word-spacing:4.005822px;}
.ws2f{word-spacing:4.071276px;}
.ws67{word-spacing:4.136731px;}
.ws1d{word-spacing:4.162913px;}
.wsc3{word-spacing:4.202185px;}
.wsbb{word-spacing:4.464004px;}
.ws3a{word-spacing:4.483200px;}
.ws49{word-spacing:4.621095px;}
.ws56{word-spacing:4.725822px;}
.ws66{word-spacing:4.817459px;}
.wsc1{word-spacing:5.066186px;}
.ws7{word-spacing:5.092881px;}
.wsbd{word-spacing:5.131641px;}
.wsa5{word-spacing:5.184004px;}
.ws83{word-spacing:5.249459px;}
.ws6a{word-spacing:5.293748px;}
.ws26{word-spacing:5.379825px;}
.ws9b{word-spacing:5.380368px;}
.ws0{word-spacing:5.412522px;}
.ws79{word-spacing:5.445823px;}
.ws57{word-spacing:5.511277px;}
.ws4c{word-spacing:5.642187px;}
.wsc4{word-spacing:5.655277px;}
.ws8{word-spacing:5.690637px;}
.ws75{word-spacing:5.838550px;}
.wsd{word-spacing:5.929740px;}
.ws71{word-spacing:5.944852px;}
.ws9c{word-spacing:5.969460px;}
.ws98{word-spacing:5.982365px;}
.wsa4{word-spacing:5.995641px;}
.ws5{word-spacing:6.001470px;}
.ws69{word-spacing:6.068443px;}
.ws97{word-spacing:6.309823px;}
.ws95{word-spacing:6.375278px;}
.wsa{word-spacing:6.407944px;}
.ws53{word-spacing:6.440733px;}
.ws54{word-spacing:6.637096px;}
.ws23{word-spacing:6.650187px;}
.ws4d{word-spacing:6.702551px;}
.ws74{word-spacing:6.715642px;}
.ws37{word-spacing:6.820369px;}
.ws39{word-spacing:6.885824px;}
.ws59{word-spacing:6.898915px;}
.wsad{word-spacing:7.082188px;}
.ws4b{word-spacing:7.095279px;}
.ws8d{word-spacing:7.162836px;}
.ws6f{word-spacing:7.168836px;}
.wsb0{word-spacing:7.194325px;}
.wsba{word-spacing:7.409461px;}
.wsc0{word-spacing:7.474915px;}
.ws7e{word-spacing:7.605825px;}
.wsb6{word-spacing:8.391280px;}
.ws76{word-spacing:8.666189px;}
.ws7d{word-spacing:8.744735px;}
.ws9d{word-spacing:8.797098px;}
.ws36{word-spacing:9.045826px;}
.ws35{word-spacing:9.111280px;}
.ws38{word-spacing:9.582553px;}
.wsc2{word-spacing:9.975281px;}
.ws7f{word-spacing:10.237099px;}
.wsb8{word-spacing:10.485827px;}
.ws2c{word-spacing:10.695282px;}
.wsc{word-spacing:10.723743px;}
.ws82{word-spacing:10.957100px;}
.ws20{word-spacing:11.271282px;}
.ws21{word-spacing:11.336737px;}
.ws7a{word-spacing:11.742555px;}
.ws2e{word-spacing:11.808010px;}
.ws2d{word-spacing:11.873464px;}
.ws78{word-spacing:12.004374px;}
.ws29{word-spacing:12.266192px;}
.ws30{word-spacing:12.397101px;}
.ws9{word-spacing:13.054991px;}
.ws58{word-spacing:13.444375px;}
.ws64{word-spacing:13.575284px;}
.wsb1{word-spacing:16.194044px;}
.wsb7{word-spacing:16.455286px;}
.wsb3{word-spacing:17.017440px;}
.wsa0{word-spacing:17.438981px;}
.wsb5{word-spacing:17.484292px;}
.ws65{word-spacing:17.486612px;}
.ws5c{word-spacing:17.486981px;}
.ws7c{word-spacing:18.811370px;}
.ws11{word-spacing:19.545825px;}
.ws55{word-spacing:21.116981px;}
.ws5d{word-spacing:21.122612px;}
.ws47{word-spacing:21.122981px;}
.ws2{word-spacing:23.312640px;}
.ws15{word-spacing:24.339089px;}
.ws1e{word-spacing:39.639306px;}
.ws84{word-spacing:67.537370px;}
.ws33{word-spacing:69.937725px;}
.ws3b{word-spacing:99.137537px;}
.ws6c{word-spacing:99.202992px;}
.wsb4{word-spacing:398.109882px;}
.ws24{word-spacing:2278.420665px;}
._3c{margin-left:-47.978222px;}
._2f{margin-left:-46.145493px;}
._39{margin-left:-37.440031px;}
._14{margin-left:-32.792755px;}
._c{margin-left:-31.441966px;}
._2a{margin-left:-21.816018px;}
._37{margin-left:-18.487778px;}
._2b{margin-left:-14.533682px;}
._a{margin-left:-13.270581px;}
._35{margin-left:-11.059067px;}
._1{margin-left:-8.056807px;}
._10{margin-left:-6.283642px;}
._8{margin-left:-4.961375px;}
._5{margin-left:-3.953789px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._4{width:1.187882px;}
._2{width:2.582310px;}
._28{width:3.740754px;}
._36{width:5.125439px;}
._2e{width:7.516674px;}
._2c{width:10.930918px;}
._34{width:14.465467px;}
._31{width:18.219052px;}
._32{width:19.505471px;}
._18{width:20.816527px;}
._33{width:21.992746px;}
._25{width:23.119333px;}
._6{width:25.105752px;}
._3a{width:26.316677px;}
._d{width:27.775096px;}
._2d{width:28.930933px;}
._19{width:29.980171px;}
._3f{width:31.614572px;}
._7{width:32.625518px;}
._20{width:33.933959px;}
._9{width:35.088277px;}
._13{width:37.953968px;}
._1d{width:39.340178px;}
._3b{width:40.901270px;}
._1f{width:43.452155px;}
._38{width:44.691282px;}
._26{width:46.802003px;}
._1e{width:49.259697px;}
._3e{width:50.269133px;}
._15{width:56.150347px;}
._1a{width:57.927321px;}
._e{width:60.545505px;}
._16{width:63.296562px;}
._17{width:64.472781px;}
._12{width:66.894601px;}
._30{width:69.528770px;}
._27{width:80.697600px;}
._24{width:96.836850px;}
._b{width:129.645647px;}
._29{width:141.709521px;}
._3d{width:152.461585px;}
._23{width:255.204050px;}
._21{width:535.287719px;}
._1b{width:865.333677px;}
._1c{width:1107.283121px;}
._f{width:1312.831169px;}
._11{width:2205.901032px;}
._22{width:2211.783436px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:63.168000px;}
.y28{bottom:108.000000px;}
.yea{bottom:110.662500px;}
.y27{bottom:128.323500px;}
.y10d{bottom:137.802000px;}
.ye8{bottom:139.189500px;}
.y49{bottom:144.915000px;}
.ye9{bottom:147.790500px;}
.y26{bottom:148.647000px;}
.y10c{bottom:158.127000px;}
.ye5{bottom:158.820000px;}
.ye4{bottom:163.138500px;}
.y25{bottom:168.972000px;}
.ye7{bottom:174.366000px;}
.ye6{bottom:179.274000px;}
.y48{bottom:181.677000px;}
.yb8{bottom:185.176500px;}
.ye3{bottom:190.575000px;}
.y10b{bottom:191.899500px;}
.y8e{bottom:198.225000px;}
.y66{bottom:199.402500px;}
.y24{bottom:205.659000px;}
.y10a{bottom:212.223000px;}
.y47{bottom:215.064000px;}
.y8c{bottom:218.550000px;}
.ye1{bottom:222.196500px;}
.y65{bottom:222.255000px;}
.y46{bottom:226.288500px;}
.ye2{bottom:227.034000px;}
.y8d{bottom:231.730500px;}
.yb7{bottom:235.873500px;}
.ye0{bottom:239.307000px;}
.yde{bottom:241.642500px;}
.y23{bottom:242.346000px;}
.y109{bottom:245.997000px;}
.ydf{bottom:252.712500px;}
.yb6{bottom:256.197000px;}
.y64{bottom:258.783000px;}
.y8a{bottom:260.733000px;}
.y8b{bottom:262.533000px;}
.y108{bottom:266.320500px;}
.y45{bottom:270.745500px;}
.yb5{bottom:276.520500px;}
.y22{bottom:279.034500px;}
.ydd{bottom:291.145500px;}
.yb4{bottom:296.844000px;}
.y21{bottom:299.358000px;}
.y107{bottom:300.094500px;}
.y89{bottom:301.585500px;}
.y63{bottom:310.341000px;}
.ydc{bottom:311.469000px;}
.y44{bottom:314.133000px;}
.yb3{bottom:317.167500px;}
.y20{bottom:319.681500px;}
.y106{bottom:320.418000px;}
.y87{bottom:327.277500px;}
.y62{bottom:330.666000px;}
.y86{bottom:332.560500px;}
.y88{bottom:335.149500px;}
.yb2{bottom:336.744000px;}
.yb0{bottom:337.492500px;}
.y1f{bottom:340.005000px;}
.yb1{bottom:342.001500px;}
.y85{bottom:344.865000px;}
.y61{bottom:350.989500px;}
.y105{bottom:354.190500px;}
.ydb{bottom:354.691500px;}
.yaf{bottom:357.816000px;}
.y43{bottom:358.429500px;}
.y1e{bottom:360.328500px;}
.y104{bottom:374.515500px;}
.yae{bottom:378.139500px;}
.y84{bottom:382.173000px;}
.y60{bottom:384.762000px;}
.yd9{bottom:387.753000px;}
.yda{bottom:387.948000px;}
.yd7{bottom:388.081500px;}
.y42{bottom:389.322000px;}
.y1d{bottom:397.017000px;}
.yd6{bottom:398.977500px;}
.yd8{bottom:403.114500px;}
.y5f{bottom:405.087000px;}
.y83{bottom:406.045500px;}
.y103{bottom:408.288000px;}
.yad{bottom:414.667500px;}
.y82{bottom:417.270000px;}
.y102{bottom:428.611500px;}
.y41{bottom:433.141500px;}
.y1c{bottom:433.704000px;}
.y5e{bottom:438.859500px;}
.yd5{bottom:442.617000px;}
.y81{bottom:458.233500px;}
.y5d{bottom:459.183000px;}
.y101{bottom:465.141000px;}
.yac{bottom:465.364500px;}
.y40{bottom:469.903500px;}
.yd4{bottom:473.509500px;}
.y80{bottom:480.274500px;}
.y1b{bottom:484.528500px;}
.y7f{bottom:485.559000px;}
.yab{bottom:485.688000px;}
.y5c{bottom:492.957000px;}
.y1a{bottom:502.461000px;}
.y7e{bottom:505.882500px;}
.yaa{bottom:506.011500px;}
.y3f{bottom:506.665500px;}
.y5b{bottom:513.280500px;}
.y100{bottom:516.699000px;}
.yd3{bottom:517.329000px;}
.y19{bottom:520.393500px;}
.y7d{bottom:520.921500px;}
.y7c{bottom:526.206000px;}
.ya9{bottom:526.336500px;}
.yff{bottom:537.022500px;}
.y3e{bottom:537.556500px;}
.yd1{bottom:537.652500px;}
.y18{bottom:538.326000px;}
.yd2{bottom:541.971000px;}
.y5a{bottom:550.042500px;}
.ya8{bottom:554.310000px;}
.y17{bottom:556.258500px;}
.y7b{bottom:557.098500px;}
.ya7{bottom:559.195500px;}
.yd0{bottom:571.425000px;}
.yfe{bottom:571.549500px;}
.y16{bottom:574.191000px;}
.y3d{bottom:581.376000px;}
.yfd{bottom:582.774000px;}
.y59{bottom:586.804500px;}
.ya6{bottom:589.287000px;}
.ycf{bottom:591.748500px;}
.y14{bottom:592.125000px;}
.ya5{bottom:594.172500px;}
.y7a{bottom:594.223500px;}
.y3c{bottom:601.699500px;}
.y15{bottom:604.486500px;}
.y12{bottom:610.057500px;}
.yce{bottom:612.073500px;}
.y58{bottom:620.578500px;}
.y79{bottom:621.123000px;}
.y3b{bottom:622.024500px;}
.y13{bottom:622.419000px;}
.ya4{bottom:625.455000px;}
.yfc{bottom:628.524000px;}
.y11{bottom:639.687000px;}
.y57{bottom:640.902000px;}
.ya3{bottom:645.778500px;}
.ycd{bottom:645.846000px;}
.yfb{bottom:648.849000px;}
.y10{bottom:652.348500px;}
.y3a{bottom:658.552500px;}
.y78{bottom:660.604500px;}
.ycc{bottom:666.169500px;}
.y77{bottom:671.829000px;}
.y56{bottom:677.430000px;}
.ya0{bottom:677.977500px;}
.ya2{bottom:679.734000px;}
.yfa{bottom:685.611000px;}
.yf{bottom:688.140000px;}
.y9f{bottom:690.958500px;}
.ya1{bottom:699.664500px;}
.ycb{bottom:699.943500px;}
.ye{bottom:706.072500px;}
.y39{bottom:710.110500px;}
.y76{bottom:713.436000px;}
.yca{bottom:720.267000px;}
.yf9{bottom:722.373000px;}
.y55{bottom:723.345000px;}
.yd{bottom:724.005000px;}
.y54{bottom:728.988000px;}
.y38{bottom:730.434000px;}
.y9e{bottom:732.316500px;}
.y74{bottom:733.759500px;}
.yc{bottom:741.937500px;}
.y75{bottom:747.297000px;}
.y37{bottom:750.757500px;}
.y9d{bottom:752.640000px;}
.yc9{bottom:754.041000px;}
.yf8{bottom:758.901000px;}
.yb{bottom:759.870000px;}
.y53{bottom:765.030000px;}
.y9c{bottom:772.963500px;}
.yc8{bottom:774.364500px;}
.ya{bottom:777.802500px;}
.y52{bottom:779.241000px;}
.y36{bottom:784.531500px;}
.yf7{bottom:785.800500px;}
.y73{bottom:794.146500px;}
.y9{bottom:795.736500px;}
.y9b{bottom:804.246000px;}
.y35{bottom:804.855000px;}
.yc7{bottom:808.138500px;}
.y8{bottom:813.669000px;}
.y70{bottom:813.777000px;}
.y51{bottom:822.628500px;}
.y34{bottom:825.178500px;}
.yc6{bottom:828.462000px;}
.y72{bottom:829.321500px;}
.y71{bottom:834.231000px;}
.y9a{bottom:835.528500px;}
.y7{bottom:836.269500px;}
.yf6{bottom:837.358500px;}
.y33{bottom:845.502000px;}
.y50{bottom:853.519500px;}
.y99{bottom:855.852000px;}
.yf5{bottom:857.682000px;}
.y6f{bottom:859.263000px;}
.yc5{bottom:859.353000px;}
.y98{bottom:876.175500px;}
.yf4{bottom:878.005500px;}
.y32{bottom:879.276000px;}
.y6e{bottom:885.013500px;}
.y6{bottom:892.008000px;}
.y4f{bottom:897.339000px;}
.yf3{bottom:898.329000px;}
.y6d{bottom:899.224500px;}
.y31{bottom:899.599500px;}
.yc4{bottom:905.680500px;}
.y97{bottom:908.383500px;}
.y96{bottom:913.269000px;}
.yf2{bottom:918.654000px;}
.y6c{bottom:919.548000px;}
.y30{bottom:919.923000px;}
.yc3{bottom:926.004000px;}
.y5{bottom:928.695000px;}
.y4e{bottom:934.101000px;}
.yf1{bottom:938.977500px;}
.y2f{bottom:940.248000px;}
.y95{bottom:944.550000px;}
.y6b{bottom:950.887500px;}
.yf0{bottom:959.301000px;}
.yc2{bottom:973.443000px;}
.y4{bottom:974.161500px;}
.y94{bottom:976.497000px;}
.y2e{bottom:976.776000px;}
.y4d{bottom:978.705000px;}
.yef{bottom:979.624500px;}
.y6a{bottom:982.225500px;}
.yba{bottom:983.233500px;}
.yc1{bottom:991.375500px;}
.yb9{bottom:995.628000px;}
.y3{bottom:1007.038500px;}
.y93{bottom:1008.444000px;}
.yc0{bottom:1009.308000px;}
.yee{bottom:1016.152500px;}
.y4c{bottom:1023.001500px;}
.y2d{bottom:1028.334000px;}
.y92{bottom:1037.650500px;}
.y2{bottom:1039.915500px;}
.y69{bottom:1048.729500px;}
.ybd{bottom:1055.067000px;}
.ybf{bottom:1056.534000px;}
.y91{bottom:1057.974000px;}
.y10f{bottom:1063.975500px;}
.y2c{bottom:1065.021000px;}
.y4b{bottom:1067.298000px;}
.yed{bottom:1067.712000px;}
.y1{bottom:1072.792500px;}
.y68{bottom:1076.587500px;}
.y90{bottom:1078.297500px;}
.y10e{bottom:1084.299000px;}
.yec{bottom:1088.035500px;}
.ybc{bottom:1093.335000px;}
.ybe{bottom:1094.802000px;}
.y2b{bottom:1101.709500px;}
.y8f{bottom:1102.618500px;}
.y4a{bottom:1107.504000px;}
.y67{bottom:1111.447500px;}
.yeb{bottom:1118.073000px;}
.y2a{bottom:1138.396500px;}
.ybb{bottom:1139.169000px;}
.h10{height:34.143908px;}
.h15{height:35.865450px;}
.h4{height:44.831700px;}
.h7{height:49.090950px;}
.h3{height:49.781453px;}
.h14{height:50.530951px;}
.h28{height:51.153331px;}
.h2a{height:51.440231px;}
.h29{height:51.446231px;}
.h27{height:52.084950px;}
.h8{height:53.798400px;}
.hc{height:56.845855px;}
.h1c{height:59.613450px;}
.he{height:59.619450px;}
.h13{height:60.115855px;}
.hd{height:60.121855px;}
.h1b{height:60.619855px;}
.h11{height:61.641450px;}
.h32{height:62.889450px;}
.h18{height:63.393450px;}
.h6{height:64.557900px;}
.h31{height:66.358950px;}
.h2b{height:66.364950px;}
.h2f{height:67.078951px;}
.h24{height:67.707450px;}
.h22{height:67.713450px;}
.h23{height:68.632950px;}
.h1a{height:70.228950px;}
.h12{height:71.662950px;}
.h2{height:73.027727px;}
.h19{height:81.757855px;}
.h2e{height:86.428951px;}
.h20{height:87.952950px;}
.h2c{height:93.208950px;}
.ha{height:93.370950px;}
.h17{height:93.988950px;}
.h21{height:103.258951px;}
.h1d{height:103.899450px;}
.h2d{height:111.358951px;}
.h1e{height:119.440950px;}
.h1f{height:132.232950px;}
.hf{height:139.618951px;}
.h9{height:139.624951px;}
.h33{height:142.822951px;}
.h30{height:144.886950px;}
.h16{height:147.514950px;}
.h25{height:162.460951px;}
.h26{height:173.997450px;}
.h5{height:178.152763px;}
.hb{height:184.516951px;}
.h34{height:187.720951px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:106.746000px;}
.x29{left:108.000000px;}
.xf0{left:116.182500px;}
.x9c{left:118.981500px;}
.x1{left:123.469500px;}
.x2a{left:132.546000px;}
.x3{left:136.309500px;}
.x2e{left:139.294500px;}
.xd6{left:141.766500px;}
.xcc{left:143.023500px;}
.x37{left:144.483000px;}
.x26{left:147.160500px;}
.x9{left:148.521000px;}
.x7c{left:151.470000px;}
.x8e{left:153.952500px;}
.x4f{left:158.683500px;}
.x2{left:161.487000px;}
.x8{left:171.325500px;}
.x53{left:176.247000px;}
.x4e{left:181.170000px;}
.x43{left:183.571500px;}
.xd7{left:185.479500px;}
.xb0{left:188.862000px;}
.x69{left:191.337000px;}
.x8a{left:192.556500px;}
.x2f{left:194.769000px;}
.x7d{left:199.885500px;}
.x1c{left:203.187000px;}
.xba{left:207.969000px;}
.x54{left:211.528500px;}
.x6a{left:214.282500px;}
.xdd{left:217.126500px;}
.xbb{left:219.255000px;}
.xe9{left:222.664500px;}
.xbc{left:225.745500px;}
.xea{left:227.203500px;}
.x74{left:228.904500px;}
.x1d{left:230.319000px;}
.x45{left:235.090500px;}
.x90{left:241.888500px;}
.x1e{left:243.337500px;}
.xeb{left:245.137500px;}
.x7e{left:247.203000px;}
.xc2{left:248.994000px;}
.xbd{left:251.287500px;}
.x85{left:253.834500px;}
.x46{left:255.135000px;}
.x91{left:257.622000px;}
.xbe{left:260.097000px;}
.xe0{left:261.099000px;}
.x55{left:264.022500px;}
.xa6{left:267.288000px;}
.xa7{left:271.659000px;}
.xad{left:273.202500px;}
.x1f{left:277.912500px;}
.x18{left:280.200000px;}
.xd8{left:282.528000px;}
.x49{left:283.929000px;}
.xbf{left:285.565500px;}
.x9f{left:288.690000px;}
.x20{left:290.931000px;}
.xc0{left:292.056000px;}
.x40{left:293.092500px;}
.xa0{left:296.814000px;}
.x21{left:298.402500px;}
.x56{left:300.468000px;}
.x38{left:305.046000px;}
.xd9{left:307.356000px;}
.x36{left:308.595000px;}
.x22{left:309.876000px;}
.x5e{left:310.893000px;}
.xe6{left:312.193500px;}
.x44{left:317.086500px;}
.x57{left:318.649500px;}
.xca{left:319.669500px;}
.x1a{left:323.772000px;}
.x23{left:325.650000px;}
.x78{left:327.030000px;}
.x5d{left:329.332500px;}
.x39{left:330.514500px;}
.xe1{left:331.803000px;}
.x24{left:332.973000px;}
.xc5{left:334.429500px;}
.xc1{left:335.620500px;}
.x25{left:337.123500px;}
.xde{left:340.677000px;}
.xc3{left:341.779500px;}
.x1b{left:347.185500px;}
.xe3{left:349.311000px;}
.x42{left:352.299000px;}
.x58{left:355.318500px;}
.x9d{left:356.469000px;}
.xee{left:361.107000px;}
.x67{left:364.809000px;}
.x41{left:367.825500px;}
.x77{left:370.584000px;}
.x6{left:374.125500px;}
.x5{left:377.638500px;}
.x7f{left:381.315000px;}
.xa1{left:383.910000px;}
.x32{left:384.994500px;}
.x3a{left:392.613000px;}
.x33{left:394.539000px;}
.x5f{left:397.002000px;}
.x4{left:402.628500px;}
.xda{left:407.814000px;}
.x75{left:411.256500px;}
.x80{left:412.560000px;}
.x7{left:413.811000px;}
.xb4{left:417.226500px;}
.x81{left:419.050500px;}
.x68{left:421.312500px;}
.xef{left:422.905500px;}
.xcb{left:424.347000px;}
.xb2{left:429.729000px;}
.x63{left:430.879500px;}
.xae{left:434.380500px;}
.x19{left:438.333000px;}
.x62{left:439.522500px;}
.x60{left:441.361500px;}
.x2b{left:442.366500px;}
.xec{left:448.923000px;}
.x7b{left:451.831500px;}
.x79{left:454.507500px;}
.xe4{left:455.853000px;}
.x3b{left:457.269000px;}
.xb6{left:459.528000px;}
.xb5{left:462.465000px;}
.x61{left:464.260500px;}
.xa2{left:466.402500px;}
.x9e{left:468.930000px;}
.x92{left:472.452000px;}
.xa8{left:474.523500px;}
.xa{left:476.730000px;}
.xa3{left:479.041500px;}
.x3c{left:481.108500px;}
.x93{left:484.725000px;}
.xa4{left:486.313500px;}
.x94{left:490.960500px;}
.xaf{left:492.262500px;}
.xe7{left:493.962000px;}
.xa9{left:499.681500px;}
.xed{left:503.662500px;}
.x50{left:509.448000px;}
.xb{left:511.122000px;}
.xc9{left:513.114000px;}
.xb7{left:517.882500px;}
.xe5{left:519.484500px;}
.x95{left:521.500500px;}
.x10{left:523.261500px;}
.x7a{left:525.463500px;}
.xc{left:528.298500px;}
.xaa{left:534.736500px;}
.xb3{left:537.142500px;}
.x8b{left:539.752500px;}
.xa5{left:541.458000px;}
.x64{left:543.903000px;}
.xcd{left:546.721500px;}
.x96{left:548.242500px;}
.x8f{left:552.058500px;}
.x97{left:554.479500px;}
.x8c{left:555.673500px;}
.xe2{left:558.660000px;}
.x11{left:559.891500px;}
.xd{left:562.833000px;}
.xce{left:563.934000px;}
.x47{left:566.769000px;}
.x65{left:570.178500px;}
.xc6{left:574.345500px;}
.x12{left:577.182000px;}
.x6b{left:578.317500px;}
.xb8{left:580.645500px;}
.x51{left:582.226500px;}
.xdb{left:583.570500px;}
.x98{left:584.893500px;}
.xc4{left:586.423500px;}
.x13{left:588.283500px;}
.x48{left:589.668000px;}
.xdc{left:591.589500px;}
.x14{left:594.210000px;}
.x99{left:595.675500px;}
.x66{left:598.074000px;}
.xdf{left:601.567500px;}
.x27{left:608.872500px;}
.x8d{left:614.563500px;}
.x86{left:616.863000px;}
.x28{left:621.075000px;}
.x87{left:623.098500px;}
.xcf{left:625.561500px;}
.xd1{left:627.769500px;}
.x15{left:630.523500px;}
.x9a{left:632.038500px;}
.xe{left:635.416500px;}
.x16{left:638.943000px;}
.x9b{left:640.056000px;}
.xb9{left:643.749000px;}
.x76{left:646.534500px;}
.x88{left:648.567000px;}
.xac{left:649.675500px;}
.x3d{left:651.340500px;}
.xf{left:652.360500px;}
.x17{left:654.447000px;}
.x6c{left:655.615500px;}
.xd0{left:656.943000px;}
.x3e{left:659.473500px;}
.xab{left:664.936500px;}
.x5a{left:669.585000px;}
.x3f{left:673.099500px;}
.x5b{left:679.131000px;}
.xb1{left:681.585000px;}
.x84{left:683.518500px;}
.x4a{left:685.317000px;}
.xc7{left:689.256000px;}
.x59{left:694.896000px;}
.x4b{left:696.160500px;}
.xd4{left:699.961500px;}
.x30{left:702.631500px;}
.x89{left:703.923000px;}
.x34{left:707.956500px;}
.x6d{left:709.924500px;}
.xc8{left:711.882000px;}
.xd3{left:714.819000px;}
.x6e{left:718.384500px;}
.x35{left:722.794500px;}
.x6f{left:724.780500px;}
.x82{left:725.923500px;}
.xd2{left:729.459000px;}
.x4c{left:731.850000px;}
.x70{left:735.952500px;}
.x31{left:739.024500px;}
.xe8{left:740.977500px;}
.x4d{left:746.767500px;}
.x71{left:748.881000px;}
.x83{left:755.359500px;}
.xd5{left:756.514500px;}
.x2c{left:758.266500px;}
.x72{left:759.825000px;}
.x5c{left:773.227500px;}
.x2d{left:775.539000px;}
.x73{left:777.100500px;}
@media print{
.v27{vertical-align:-57.557333pt;}
.v1a{vertical-align:-56.346667pt;}
.v11{vertical-align:-48.133333pt;}
.v18{vertical-align:-46.869333pt;}
.v4{vertical-align:-43.952000pt;}
.ve{vertical-align:-34.912000pt;}
.v25{vertical-align:-16.826667pt;}
.vf{vertical-align:-14.544000pt;}
.v5{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v22{vertical-align:2.661333pt;}
.v23{vertical-align:15.354667pt;}
.v1c{vertical-align:17.370667pt;}
.v13{vertical-align:18.789333pt;}
.vd{vertical-align:20.064000pt;}
.va{vertical-align:21.114667pt;}
.vc{vertical-align:22.912000pt;}
.vb{vertical-align:24.026667pt;}
.v1b{vertical-align:28.309333pt;}
.v8{vertical-align:30.352000pt;}
.v1e{vertical-align:31.829333pt;}
.v10{vertical-align:34.912000pt;}
.v1f{vertical-align:37.429333pt;}
.v7{vertical-align:39.360000pt;}
.v19{vertical-align:40.469333pt;}
.v14{vertical-align:43.258667pt;}
.v3{vertical-align:45.018667pt;}
.v17{vertical-align:46.869333pt;}
.v24{vertical-align:54.069333pt;}
.v15{vertical-align:60.474667pt;}
.v16{vertical-align:62.533333pt;}
.v26{vertical-align:69.797333pt;}
.v6{vertical-align:79.194667pt;}
.v28{vertical-align:82.037333pt;}
.v12{vertical-align:87.488000pt;}
.v20{vertical-align:94.480000pt;}
.v1d{vertical-align:99.493333pt;}
.v2{vertical-align:117.338667pt;}
.v9{vertical-align:119.098667pt;}
.v21{vertical-align:122.784000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000249pt;}
.ls27{letter-spacing:0.000329pt;}
.ls6e{letter-spacing:0.000404pt;}
.ls9{letter-spacing:0.000882pt;}
.ls5a{letter-spacing:0.000935pt;}
.ls82{letter-spacing:0.000939pt;}
.ls66{letter-spacing:0.001415pt;}
.ls9f{letter-spacing:0.001432pt;}
.ls37{letter-spacing:0.001793pt;}
.ls69{letter-spacing:0.001899pt;}
.ls44{letter-spacing:0.002384pt;}
.ls6c{letter-spacing:0.002391pt;}
.ls50{letter-spacing:0.002393pt;}
.ls63{letter-spacing:0.002399pt;}
.lse{letter-spacing:0.002879pt;}
.ls0{letter-spacing:0.003246pt;}
.ls1a{letter-spacing:0.003370pt;}
.ls99{letter-spacing:0.004771pt;}
.ls7a{letter-spacing:0.005176pt;}
.ls38{letter-spacing:0.005612pt;}
.ls7{letter-spacing:0.006216pt;}
.lsa2{letter-spacing:0.009423pt;}
.ls3e{letter-spacing:0.010582pt;}
.ls30{letter-spacing:0.010954pt;}
.ls93{letter-spacing:0.012050pt;}
.lsa4{letter-spacing:0.012535pt;}
.ls4f{letter-spacing:0.013551pt;}
.ls9b{letter-spacing:0.016156pt;}
.ls81{letter-spacing:0.016464pt;}
.ls54{letter-spacing:0.022189pt;}
.ls16{letter-spacing:0.022192pt;}
.ls58{letter-spacing:0.023101pt;}
.ls26{letter-spacing:0.024102pt;}
.ls6f{letter-spacing:0.027884pt;}
.ls98{letter-spacing:0.232727pt;}
.ls4{letter-spacing:1.434614pt;}
.ls20{letter-spacing:1.512729pt;}
.ls1b{letter-spacing:1.570910pt;}
.lsa6{letter-spacing:2.094547pt;}
.ls86{letter-spacing:2.202645pt;}
.ls29{letter-spacing:2.210911pt;}
.ls41{letter-spacing:2.465418pt;}
.ls78{letter-spacing:2.501820pt;}
.ls5e{letter-spacing:2.653258pt;}
.ls9a{letter-spacing:2.654270pt;}
.ls60{letter-spacing:2.654275pt;}
.ls5f{letter-spacing:2.654400pt;}
.ls24{letter-spacing:2.656092pt;}
.ls94{letter-spacing:2.657061pt;}
.ls64{letter-spacing:2.657146pt;}
.lsf{letter-spacing:2.658104pt;}
.ls9d{letter-spacing:2.659144pt;}
.ls23{letter-spacing:2.661425pt;}
.ls21{letter-spacing:2.909093pt;}
.ls34{letter-spacing:2.967275pt;}
.ls6b{letter-spacing:3.316366pt;}
.ls73{letter-spacing:3.332675pt;}
.ls5c{letter-spacing:3.348813pt;}
.ls61{letter-spacing:3.352880pt;}
.ls4c{letter-spacing:3.372968pt;}
.ls6d{letter-spacing:3.374548pt;}
.ls74{letter-spacing:3.378225pt;}
.ls4d{letter-spacing:3.379275pt;}
.ls68{letter-spacing:3.379760pt;}
.ls18{letter-spacing:4.189094pt;}
.ls53{letter-spacing:4.528491pt;}
.ls17{letter-spacing:4.750730pt;}
.ls1c{letter-spacing:4.756063pt;}
.ls95{letter-spacing:5.033181pt;}
.ls42{letter-spacing:5.105323pt;}
.ls65{letter-spacing:5.110656pt;}
.lsa{letter-spacing:5.366521pt;}
.ls11{letter-spacing:5.760005pt;}
.ls80{letter-spacing:5.768053pt;}
.ls7e{letter-spacing:5.789529pt;}
.ls7d{letter-spacing:5.794863pt;}
.ls49{letter-spacing:6.319460pt;}
.ls51{letter-spacing:6.339802pt;}
.ls48{letter-spacing:6.342755pt;}
.ls55{letter-spacing:6.345135pt;}
.ls4b{letter-spacing:6.358614pt;}
.ls2c{letter-spacing:6.375925pt;}
.ls88{letter-spacing:8.087279pt;}
.ls6{letter-spacing:8.820222pt;}
.ls15{letter-spacing:9.658190pt;}
.lsaa{letter-spacing:9.700328pt;}
.lsa7{letter-spacing:9.705478pt;}
.ls10{letter-spacing:9.716372pt;}
.ls90{letter-spacing:10.298190pt;}
.ls2{letter-spacing:11.795718pt;}
.ls5{letter-spacing:11.848852pt;}
.lsa1{letter-spacing:11.985465pt;}
.ls25{letter-spacing:12.916374pt;}
.ls2a{letter-spacing:12.974556pt;}
.ls40{letter-spacing:14.487285pt;}
.ls91{letter-spacing:14.603649pt;}
.lsa0{letter-spacing:14.627603pt;}
.ls1{letter-spacing:14.771215pt;}
.lsa3{letter-spacing:15.582270pt;}
.ls9e{letter-spacing:15.587144pt;}
.ls9c{letter-spacing:15.587603pt;}
.ls83{letter-spacing:15.618104pt;}
.ls8b{letter-spacing:16.071733pt;}
.ls52{letter-spacing:16.071739pt;}
.ls13{letter-spacing:16.116377pt;}
.ls3f{letter-spacing:16.159477pt;}
.ls3d{letter-spacing:16.159984pt;}
.ls14{letter-spacing:16.174559pt;}
.ls84{letter-spacing:16.232741pt;}
.ls2e{letter-spacing:16.290923pt;}
.ls76{letter-spacing:16.581832pt;}
.ls8{letter-spacing:16.790302pt;}
.ls7b{letter-spacing:17.414020pt;}
.ls79{letter-spacing:17.693578pt;}
.ls7f{letter-spacing:17.746711pt;}
.ls8f{letter-spacing:18.260811pt;}
.ls6a{letter-spacing:18.269106pt;}
.ls45{letter-spacing:18.385470pt;}
.ls96{letter-spacing:18.443652pt;}
.ls8e{letter-spacing:18.822479pt;}
.ls97{letter-spacing:18.985137pt;}
.ls72{letter-spacing:19.083652pt;}
.lsac{letter-spacing:19.141834pt;}
.lsab{letter-spacing:19.200016pt;}
.lsa8{letter-spacing:19.314836pt;}
.ls4a{letter-spacing:19.374562pt;}
.ls3b{letter-spacing:19.432743pt;}
.ls3a{letter-spacing:20.072744pt;}
.ls8c{letter-spacing:20.712745pt;}
.ls39{letter-spacing:20.770926pt;}
.ls31{letter-spacing:20.829108pt;}
.ls59{letter-spacing:21.011856pt;}
.ls2f{letter-spacing:21.178199pt;}
.ls28{letter-spacing:22.050591pt;}
.lsa5{letter-spacing:22.051144pt;}
.ls46{letter-spacing:22.515319pt;}
.ls33{letter-spacing:23.472092pt;}
.ls7c{letter-spacing:23.591437pt;}
.ls67{letter-spacing:23.738202pt;}
.ls8a{letter-spacing:25.092116pt;}
.ls87{letter-spacing:25.716385pt;}
.ls77{letter-spacing:25.949113pt;}
.ls75{letter-spacing:26.240022pt;}
.ls36{letter-spacing:26.298204pt;}
.ls43{letter-spacing:26.472749pt;}
.ls32{letter-spacing:26.530931pt;}
.ls3c{letter-spacing:26.589113pt;}
.ls2d{letter-spacing:26.996386pt;}
.ls56{letter-spacing:27.255739pt;}
.ls5d{letter-spacing:27.287295pt;}
.ls85{letter-spacing:27.461841pt;}
.ls62{letter-spacing:28.160023pt;}
.lsb{letter-spacing:29.090933pt;}
.ls3{letter-spacing:32.468157pt;}
.ls5b{letter-spacing:32.926523pt;}
.ls12{letter-spacing:35.025484pt;}
.ls19{letter-spacing:35.551488pt;}
.ls22{letter-spacing:35.556822pt;}
.lsa9{letter-spacing:45.785669pt;}
.ls71{letter-spacing:95.266400pt;}
.ls47{letter-spacing:111.421067pt;}
.ls1d{letter-spacing:120.478403pt;}
.ls1e{letter-spacing:126.061077pt;}
.ls89{letter-spacing:128.762920pt;}
.ls92{letter-spacing:128.775744pt;}
.ls8d{letter-spacing:131.025564pt;}
.ls70{letter-spacing:132.434411pt;}
.ls4e{letter-spacing:158.685067pt;}
.ls1f{letter-spacing:412.218525pt;}
.ls57{letter-spacing:444.334916pt;}
.ls2b{letter-spacing:455.564016pt;}
.lsd{letter-spacing:1012.189934pt;}
.ws87{word-spacing:-71.098241pt;}
.ws86{word-spacing:-58.181867pt;}
.ws88{word-spacing:-47.616040pt;}
.ws5b{word-spacing:-46.062584pt;}
.ws4e{word-spacing:-42.065490pt;}
.ws60{word-spacing:-42.034537pt;}
.ws51{word-spacing:-42.007308pt;}
.ws9a{word-spacing:-41.832762pt;}
.wsa2{word-spacing:-38.362652pt;}
.ws3f{word-spacing:-37.899668pt;}
.ws6d{word-spacing:-35.537484pt;}
.wse{word-spacing:-34.611401pt;}
.ws90{word-spacing:-32.337481pt;}
.ws44{word-spacing:-29.521250pt;}
.ws62{word-spacing:-29.079297pt;}
.ws3c{word-spacing:-28.241478pt;}
.ws34{word-spacing:-28.183296pt;}
.ws12{word-spacing:-26.556307pt;}
.wsf{word-spacing:-25.791179pt;}
.ws5e{word-spacing:-25.274203pt;}
.ws1c{word-spacing:-23.910333pt;}
.ws1{word-spacing:-22.917140pt;}
.ws8c{word-spacing:-21.783291pt;}
.ws61{word-spacing:-21.725109pt;}
.wsa8{word-spacing:-21.666927pt;}
.ws48{word-spacing:-19.514198pt;}
.ws9f{word-spacing:-18.664743pt;}
.ws70{word-spacing:-18.583288pt;}
.ws13{word-spacing:-17.821099pt;}
.wsa1{word-spacing:-17.183492pt;}
.ws72{word-spacing:-17.167836pt;}
.ws43{word-spacing:-16.162923pt;}
.ws4f{word-spacing:-14.871285pt;}
.ws91{word-spacing:-11.481448pt;}
.ws6e{word-spacing:-10.703836pt;}
.ws6b{word-spacing:-10.693170pt;}
.ws8b{word-spacing:-8.249448pt;}
.ws42{word-spacing:-7.471711pt;}
.ws73{word-spacing:-7.231836pt;}
.ws5f{word-spacing:-6.446551pt;}
.ws5a{word-spacing:-6.047711pt;}
.wsaf{word-spacing:-3.421094pt;}
.ws63{word-spacing:-3.246548pt;}
.wsb9{word-spacing:-3.130184pt;}
.ws16{word-spacing:-2.114728pt;}
.ws9e{word-spacing:-1.733820pt;}
.wsb2{word-spacing:-1.559274pt;}
.ws99{word-spacing:-1.093819pt;}
.ws8f{word-spacing:-0.977455pt;}
.ws8e{word-spacing:-0.919273pt;}
.ws7b{word-spacing:-0.605730pt;}
.ws8a{word-spacing:-0.337455pt;}
.ws4{word-spacing:-0.201909pt;}
.ws41{word-spacing:-0.046545pt;}
.ws45{word-spacing:-0.042507pt;}
.ws46{word-spacing:-0.014676pt;}
.ws3e{word-spacing:-0.006523pt;}
.ws25{word-spacing:0.000000pt;}
.ws14{word-spacing:0.010627pt;}
.ws40{word-spacing:0.011636pt;}
.ws85{word-spacing:0.128000pt;}
.ws92{word-spacing:0.555885pt;}
.wsbc{word-spacing:0.726874pt;}
.wsbe{word-spacing:0.791273pt;}
.wsbf{word-spacing:0.849455pt;}
.wsac{word-spacing:1.000728pt;}
.ws68{word-spacing:1.058910pt;}
.wsab{word-spacing:1.140365pt;}
.wsaa{word-spacing:1.408001pt;}
.ws80{word-spacing:1.419638pt;}
.ws81{word-spacing:1.477819pt;}
.wsa9{word-spacing:1.605820pt;}
.ws50{word-spacing:2.513457pt;}
.ws96{word-spacing:2.583275pt;}
.ws17{word-spacing:2.614186pt;}
.ws89{word-spacing:2.746184pt;}
.ws32{word-spacing:2.804366pt;}
.ws6{word-spacing:2.826722pt;}
.wsb{word-spacing:2.879856pt;}
.wsa7{word-spacing:2.920730pt;}
.ws1b{word-spacing:2.932989pt;}
.ws94{word-spacing:2.978912pt;}
.ws10{word-spacing:2.986123pt;}
.ws31{word-spacing:3.037093pt;}
.ws3{word-spacing:3.039257pt;}
.ws2b{word-spacing:3.095275pt;}
.ws1a{word-spacing:3.145525pt;}
.ws27{word-spacing:3.153457pt;}
.ws19{word-spacing:3.198659pt;}
.ws1f{word-spacing:3.211639pt;}
.ws18{word-spacing:3.251793pt;}
.ws22{word-spacing:3.269821pt;}
.ws3d{word-spacing:3.328003pt;}
.wsa6{word-spacing:3.351276pt;}
.ws77{word-spacing:3.386185pt;}
.ws93{word-spacing:3.409457pt;}
.wsa3{word-spacing:3.432448pt;}
.ws2a{word-spacing:3.444367pt;}
.ws52{word-spacing:3.467639pt;}
.ws28{word-spacing:3.502548pt;}
.wsae{word-spacing:3.525821pt;}
.ws4a{word-spacing:3.560730pt;}
.ws2f{word-spacing:3.618912pt;}
.ws67{word-spacing:3.677094pt;}
.ws1d{word-spacing:3.700367pt;}
.wsc3{word-spacing:3.735276pt;}
.wsbb{word-spacing:3.968003pt;}
.ws3a{word-spacing:3.985067pt;}
.ws49{word-spacing:4.107640pt;}
.ws56{word-spacing:4.200731pt;}
.ws66{word-spacing:4.282185pt;}
.wsc1{word-spacing:4.503276pt;}
.ws7{word-spacing:4.527005pt;}
.wsbd{word-spacing:4.561458pt;}
.wsa5{word-spacing:4.608004pt;}
.ws83{word-spacing:4.666186pt;}
.ws6a{word-spacing:4.705554pt;}
.ws26{word-spacing:4.782067pt;}
.ws9b{word-spacing:4.782549pt;}
.ws0{word-spacing:4.811130pt;}
.ws79{word-spacing:4.840731pt;}
.ws57{word-spacing:4.898913pt;}
.ws4c{word-spacing:5.015277pt;}
.wsc4{word-spacing:5.026913pt;}
.ws8{word-spacing:5.058344pt;}
.ws75{word-spacing:5.189823pt;}
.wsd{word-spacing:5.270880pt;}
.ws71{word-spacing:5.284313pt;}
.ws9c{word-spacing:5.306186pt;}
.ws98{word-spacing:5.317658pt;}
.wsa4{word-spacing:5.329459pt;}
.ws5{word-spacing:5.334640pt;}
.ws69{word-spacing:5.394171pt;}
.ws97{word-spacing:5.608732pt;}
.ws95{word-spacing:5.666914pt;}
.wsa{word-spacing:5.695951pt;}
.ws53{word-spacing:5.725096pt;}
.ws54{word-spacing:5.899641pt;}
.ws23{word-spacing:5.911278pt;}
.ws4d{word-spacing:5.957823pt;}
.ws74{word-spacing:5.969460pt;}
.ws37{word-spacing:6.062551pt;}
.ws39{word-spacing:6.120732pt;}
.ws59{word-spacing:6.132369pt;}
.wsad{word-spacing:6.295278pt;}
.ws4b{word-spacing:6.306914pt;}
.ws8d{word-spacing:6.366966pt;}
.ws6f{word-spacing:6.372299pt;}
.wsb0{word-spacing:6.394955pt;}
.wsba{word-spacing:6.586187pt;}
.wsc0{word-spacing:6.644369pt;}
.ws7e{word-spacing:6.760733pt;}
.wsb6{word-spacing:7.458915pt;}
.ws76{word-spacing:7.703279pt;}
.ws7d{word-spacing:7.773097pt;}
.ws9d{word-spacing:7.819643pt;}
.ws36{word-spacing:8.040734pt;}
.ws35{word-spacing:8.098916pt;}
.ws38{word-spacing:8.517825pt;}
.wsc2{word-spacing:8.866916pt;}
.ws7f{word-spacing:9.099644pt;}
.wsb8{word-spacing:9.320735pt;}
.ws2c{word-spacing:9.506917pt;}
.wsc{word-spacing:9.532216pt;}
.ws82{word-spacing:9.739644pt;}
.ws20{word-spacing:10.018917pt;}
.ws21{word-spacing:10.077099pt;}
.ws7a{word-spacing:10.437827pt;}
.ws2e{word-spacing:10.496009pt;}
.ws2d{word-spacing:10.554191pt;}
.ws78{word-spacing:10.670554pt;}
.ws29{word-spacing:10.903282pt;}
.ws30{word-spacing:11.019646pt;}
.ws9{word-spacing:11.604436pt;}
.ws58{word-spacing:11.950555pt;}
.ws64{word-spacing:12.066919pt;}
.wsb1{word-spacing:14.394706pt;}
.wsb7{word-spacing:14.626921pt;}
.wsb3{word-spacing:15.126613pt;}
.wsa0{word-spacing:15.501316pt;}
.wsb5{word-spacing:15.541593pt;}
.ws65{word-spacing:15.543655pt;}
.ws5c{word-spacing:15.543983pt;}
.ws7c{word-spacing:16.721218pt;}
.ws11{word-spacing:17.374066pt;}
.ws55{word-spacing:18.770650pt;}
.ws5d{word-spacing:18.775655pt;}
.ws47{word-spacing:18.775983pt;}
.ws2{word-spacing:20.722347pt;}
.ws15{word-spacing:21.634746pt;}
.ws1e{word-spacing:35.234938pt;}
.ws84{word-spacing:60.033218pt;}
.ws33{word-spacing:62.166867pt;}
.ws3b{word-spacing:88.122255pt;}
.ws6c{word-spacing:88.180437pt;}
.wsb4{word-spacing:353.875451pt;}
.ws24{word-spacing:2025.262813pt;}
._3c{margin-left:-42.647308pt;}
._2f{margin-left:-41.018216pt;}
._39{margin-left:-33.280028pt;}
._14{margin-left:-29.149115pt;}
._c{margin-left:-27.948414pt;}
._2a{margin-left:-19.392016pt;}
._37{margin-left:-16.433580pt;}
._2b{margin-left:-12.918828pt;}
._a{margin-left:-11.796072pt;}
._35{margin-left:-9.830281pt;}
._1{margin-left:-7.161606pt;}
._10{margin-left:-5.585459pt;}
._8{margin-left:-4.410111pt;}
._5{margin-left:-3.514479pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._4{width:1.055895pt;}
._2{width:2.295387pt;}
._28{width:3.325115pt;}
._36{width:4.555946pt;}
._2e{width:6.681488pt;}
._2c{width:9.716372pt;}
._34{width:12.858193pt;}
._31{width:16.194713pt;}
._32{width:17.338196pt;}
._18{width:18.503579pt;}
._33{width:19.549107pt;}
._25{width:20.550518pt;}
._6{width:22.316224pt;}
._3a{width:23.392602pt;}
._d{width:24.688974pt;}
._2d{width:25.716385pt;}
._19{width:26.649041pt;}
._3f{width:28.101842pt;}
._7{width:29.000461pt;}
._20{width:30.163519pt;}
._9{width:31.189580pt;}
._13{width:33.736861pt;}
._1d{width:34.969047pt;}
._3b{width:36.356684pt;}
._1f{width:38.624138pt;}
._38{width:39.725584pt;}
._26{width:41.601780pt;}
._1e{width:43.786397pt;}
._3e{width:44.683674pt;}
._15{width:49.911420pt;}
._1a{width:51.490952pt;}
._e{width:53.818227pt;}
._16{width:56.263611pt;}
._17{width:57.309139pt;}
._12{width:59.461868pt;}
._30{width:61.803351pt;}
._27{width:71.731200pt;}
._24{width:86.077200pt;}
._b{width:115.240575pt;}
._29{width:125.964019pt;}
._3d{width:135.521409pt;}
._23{width:226.848045pt;}
._21{width:475.811306pt;}
._1b{width:769.185491pt;}
._1c{width:984.251663pt;}
._f{width:1166.961039pt;}
._11{width:1960.800917pt;}
._22{width:1966.029721pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:56.149333pt;}
.y28{bottom:96.000000pt;}
.yea{bottom:98.366667pt;}
.y27{bottom:114.065333pt;}
.y10d{bottom:122.490667pt;}
.ye8{bottom:123.724000pt;}
.y49{bottom:128.813333pt;}
.ye9{bottom:131.369333pt;}
.y26{bottom:132.130667pt;}
.y10c{bottom:140.557333pt;}
.ye5{bottom:141.173333pt;}
.ye4{bottom:145.012000pt;}
.y25{bottom:150.197333pt;}
.ye7{bottom:154.992000pt;}
.ye6{bottom:159.354667pt;}
.y48{bottom:161.490667pt;}
.yb8{bottom:164.601333pt;}
.ye3{bottom:169.400000pt;}
.y10b{bottom:170.577333pt;}
.y8e{bottom:176.200000pt;}
.y66{bottom:177.246667pt;}
.y24{bottom:182.808000pt;}
.y10a{bottom:188.642667pt;}
.y47{bottom:191.168000pt;}
.y8c{bottom:194.266667pt;}
.ye1{bottom:197.508000pt;}
.y65{bottom:197.560000pt;}
.y46{bottom:201.145333pt;}
.ye2{bottom:201.808000pt;}
.y8d{bottom:205.982667pt;}
.yb7{bottom:209.665333pt;}
.ye0{bottom:212.717333pt;}
.yde{bottom:214.793333pt;}
.y23{bottom:215.418667pt;}
.y109{bottom:218.664000pt;}
.ydf{bottom:224.633333pt;}
.yb6{bottom:227.730667pt;}
.y64{bottom:230.029333pt;}
.y8a{bottom:231.762667pt;}
.y8b{bottom:233.362667pt;}
.y108{bottom:236.729333pt;}
.y45{bottom:240.662667pt;}
.yb5{bottom:245.796000pt;}
.y22{bottom:248.030667pt;}
.ydd{bottom:258.796000pt;}
.yb4{bottom:263.861333pt;}
.y21{bottom:266.096000pt;}
.y107{bottom:266.750667pt;}
.y89{bottom:268.076000pt;}
.y63{bottom:275.858667pt;}
.ydc{bottom:276.861333pt;}
.y44{bottom:279.229333pt;}
.yb3{bottom:281.926667pt;}
.y20{bottom:284.161333pt;}
.y106{bottom:284.816000pt;}
.y87{bottom:290.913333pt;}
.y62{bottom:293.925333pt;}
.y86{bottom:295.609333pt;}
.y88{bottom:297.910667pt;}
.yb2{bottom:299.328000pt;}
.yb0{bottom:299.993333pt;}
.y1f{bottom:302.226667pt;}
.yb1{bottom:304.001333pt;}
.y85{bottom:306.546667pt;}
.y61{bottom:311.990667pt;}
.y105{bottom:314.836000pt;}
.ydb{bottom:315.281333pt;}
.yaf{bottom:318.058667pt;}
.y43{bottom:318.604000pt;}
.y1e{bottom:320.292000pt;}
.y104{bottom:332.902667pt;}
.yae{bottom:336.124000pt;}
.y84{bottom:339.709333pt;}
.y60{bottom:342.010667pt;}
.yd9{bottom:344.669333pt;}
.yda{bottom:344.842667pt;}
.yd7{bottom:344.961333pt;}
.y42{bottom:346.064000pt;}
.y1d{bottom:352.904000pt;}
.yd6{bottom:354.646667pt;}
.yd8{bottom:358.324000pt;}
.y5f{bottom:360.077333pt;}
.y83{bottom:360.929333pt;}
.y103{bottom:362.922667pt;}
.yad{bottom:368.593333pt;}
.y82{bottom:370.906667pt;}
.y102{bottom:380.988000pt;}
.y41{bottom:385.014667pt;}
.y1c{bottom:385.514667pt;}
.y5e{bottom:390.097333pt;}
.yd5{bottom:393.437333pt;}
.y81{bottom:407.318667pt;}
.y5d{bottom:408.162667pt;}
.y101{bottom:413.458667pt;}
.yac{bottom:413.657333pt;}
.y40{bottom:417.692000pt;}
.yd4{bottom:420.897333pt;}
.y80{bottom:426.910667pt;}
.y1b{bottom:430.692000pt;}
.y7f{bottom:431.608000pt;}
.yab{bottom:431.722667pt;}
.y5c{bottom:438.184000pt;}
.y1a{bottom:446.632000pt;}
.y7e{bottom:449.673333pt;}
.yaa{bottom:449.788000pt;}
.y3f{bottom:450.369333pt;}
.y5b{bottom:456.249333pt;}
.y100{bottom:459.288000pt;}
.yd3{bottom:459.848000pt;}
.y19{bottom:462.572000pt;}
.y7d{bottom:463.041333pt;}
.y7c{bottom:467.738667pt;}
.ya9{bottom:467.854667pt;}
.yff{bottom:477.353333pt;}
.y3e{bottom:477.828000pt;}
.yd1{bottom:477.913333pt;}
.y18{bottom:478.512000pt;}
.yd2{bottom:481.752000pt;}
.y5a{bottom:488.926667pt;}
.ya8{bottom:492.720000pt;}
.y17{bottom:494.452000pt;}
.y7b{bottom:495.198667pt;}
.ya7{bottom:497.062667pt;}
.yd0{bottom:507.933333pt;}
.yfe{bottom:508.044000pt;}
.y16{bottom:510.392000pt;}
.y3d{bottom:516.778667pt;}
.yfd{bottom:518.021333pt;}
.y59{bottom:521.604000pt;}
.ya6{bottom:523.810667pt;}
.ycf{bottom:525.998667pt;}
.y14{bottom:526.333333pt;}
.ya5{bottom:528.153333pt;}
.y7a{bottom:528.198667pt;}
.y3c{bottom:534.844000pt;}
.y15{bottom:537.321333pt;}
.y12{bottom:542.273333pt;}
.yce{bottom:544.065333pt;}
.y58{bottom:551.625333pt;}
.y79{bottom:552.109333pt;}
.y3b{bottom:552.910667pt;}
.y13{bottom:553.261333pt;}
.ya4{bottom:555.960000pt;}
.yfc{bottom:558.688000pt;}
.y11{bottom:568.610667pt;}
.y57{bottom:569.690667pt;}
.ya3{bottom:574.025333pt;}
.ycd{bottom:574.085333pt;}
.yfb{bottom:576.754667pt;}
.y10{bottom:579.865333pt;}
.y3a{bottom:585.380000pt;}
.y78{bottom:587.204000pt;}
.ycc{bottom:592.150667pt;}
.y77{bottom:597.181333pt;}
.y56{bottom:602.160000pt;}
.ya0{bottom:602.646667pt;}
.ya2{bottom:604.208000pt;}
.yfa{bottom:609.432000pt;}
.yf{bottom:611.680000pt;}
.y9f{bottom:614.185333pt;}
.ya1{bottom:621.924000pt;}
.ycb{bottom:622.172000pt;}
.ye{bottom:627.620000pt;}
.y39{bottom:631.209333pt;}
.y76{bottom:634.165333pt;}
.yca{bottom:640.237333pt;}
.yf9{bottom:642.109333pt;}
.y55{bottom:642.973333pt;}
.yd{bottom:643.560000pt;}
.y54{bottom:647.989333pt;}
.y38{bottom:649.274667pt;}
.y9e{bottom:650.948000pt;}
.y74{bottom:652.230667pt;}
.yc{bottom:659.500000pt;}
.y75{bottom:664.264000pt;}
.y37{bottom:667.340000pt;}
.y9d{bottom:669.013333pt;}
.yc9{bottom:670.258667pt;}
.yf8{bottom:674.578667pt;}
.yb{bottom:675.440000pt;}
.y53{bottom:680.026667pt;}
.y9c{bottom:687.078667pt;}
.yc8{bottom:688.324000pt;}
.ya{bottom:691.380000pt;}
.y52{bottom:692.658667pt;}
.y36{bottom:697.361333pt;}
.yf7{bottom:698.489333pt;}
.y73{bottom:705.908000pt;}
.y9{bottom:707.321333pt;}
.y9b{bottom:714.885333pt;}
.y35{bottom:715.426667pt;}
.yc7{bottom:718.345333pt;}
.y8{bottom:723.261333pt;}
.y70{bottom:723.357333pt;}
.y51{bottom:731.225333pt;}
.y34{bottom:733.492000pt;}
.yc6{bottom:736.410667pt;}
.y72{bottom:737.174667pt;}
.y71{bottom:741.538667pt;}
.y9a{bottom:742.692000pt;}
.y7{bottom:743.350667pt;}
.yf6{bottom:744.318667pt;}
.y33{bottom:751.557333pt;}
.y50{bottom:758.684000pt;}
.y99{bottom:760.757333pt;}
.yf5{bottom:762.384000pt;}
.y6f{bottom:763.789333pt;}
.yc5{bottom:763.869333pt;}
.y98{bottom:778.822667pt;}
.yf4{bottom:780.449333pt;}
.y32{bottom:781.578667pt;}
.y6e{bottom:786.678667pt;}
.y6{bottom:792.896000pt;}
.y4f{bottom:797.634667pt;}
.yf3{bottom:798.514667pt;}
.y6d{bottom:799.310667pt;}
.y31{bottom:799.644000pt;}
.yc4{bottom:805.049333pt;}
.y97{bottom:807.452000pt;}
.y96{bottom:811.794667pt;}
.yf2{bottom:816.581333pt;}
.y6c{bottom:817.376000pt;}
.y30{bottom:817.709333pt;}
.yc3{bottom:823.114667pt;}
.y5{bottom:825.506667pt;}
.y4e{bottom:830.312000pt;}
.yf1{bottom:834.646667pt;}
.y2f{bottom:835.776000pt;}
.y95{bottom:839.600000pt;}
.y6b{bottom:845.233333pt;}
.yf0{bottom:852.712000pt;}
.yc2{bottom:865.282667pt;}
.y4{bottom:865.921333pt;}
.y94{bottom:867.997333pt;}
.y2e{bottom:868.245333pt;}
.y4d{bottom:869.960000pt;}
.yef{bottom:870.777333pt;}
.y6a{bottom:873.089333pt;}
.yba{bottom:873.985333pt;}
.yc1{bottom:881.222667pt;}
.yb9{bottom:885.002667pt;}
.y3{bottom:895.145333pt;}
.y93{bottom:896.394667pt;}
.yc0{bottom:897.162667pt;}
.yee{bottom:903.246667pt;}
.y4c{bottom:909.334667pt;}
.y2d{bottom:914.074667pt;}
.y92{bottom:922.356000pt;}
.y2{bottom:924.369333pt;}
.y69{bottom:932.204000pt;}
.ybd{bottom:937.837333pt;}
.ybf{bottom:939.141333pt;}
.y91{bottom:940.421333pt;}
.y10f{bottom:945.756000pt;}
.y2c{bottom:946.685333pt;}
.y4b{bottom:948.709333pt;}
.yed{bottom:949.077333pt;}
.y1{bottom:953.593333pt;}
.y68{bottom:956.966667pt;}
.y90{bottom:958.486667pt;}
.y10e{bottom:963.821333pt;}
.yec{bottom:967.142667pt;}
.ybc{bottom:971.853333pt;}
.ybe{bottom:973.157333pt;}
.y2b{bottom:979.297333pt;}
.y8f{bottom:980.105333pt;}
.y4a{bottom:984.448000pt;}
.y67{bottom:987.953333pt;}
.yeb{bottom:993.842667pt;}
.y2a{bottom:1011.908000pt;}
.ybb{bottom:1012.594667pt;}
.h10{height:30.350141pt;}
.h15{height:31.880400pt;}
.h4{height:39.850400pt;}
.h7{height:43.636400pt;}
.h3{height:44.250180pt;}
.h14{height:44.916401pt;}
.h28{height:45.469628pt;}
.h2a{height:45.724650pt;}
.h29{height:45.729983pt;}
.h27{height:46.297733pt;}
.h8{height:47.820800pt;}
.hc{height:50.529649pt;}
.h1c{height:52.989733pt;}
.he{height:52.995067pt;}
.h13{height:53.436316pt;}
.hd{height:53.441649pt;}
.h1b{height:53.884316pt;}
.h11{height:54.792400pt;}
.h32{height:55.901733pt;}
.h18{height:56.349733pt;}
.h6{height:57.384800pt;}
.h31{height:58.985733pt;}
.h2b{height:58.991067pt;}
.h2f{height:59.625734pt;}
.h24{height:60.184400pt;}
.h22{height:60.189733pt;}
.h23{height:61.007067pt;}
.h1a{height:62.425733pt;}
.h12{height:63.700400pt;}
.h2{height:64.913535pt;}
.h19{height:72.673649pt;}
.h2e{height:76.825734pt;}
.h20{height:78.180400pt;}
.h2c{height:82.852400pt;}
.ha{height:82.996400pt;}
.h17{height:83.545733pt;}
.h21{height:91.785734pt;}
.h1d{height:92.355067pt;}
.h2d{height:98.985734pt;}
.h1e{height:106.169733pt;}
.h1f{height:117.540400pt;}
.hf{height:124.105734pt;}
.h9{height:124.111068pt;}
.h33{height:126.953734pt;}
.h30{height:128.788400pt;}
.h16{height:131.124400pt;}
.h25{height:144.409734pt;}
.h26{height:154.664400pt;}
.h5{height:158.358012pt;}
.hb{height:164.015068pt;}
.h34{height:166.863068pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:94.885333pt;}
.x29{left:96.000000pt;}
.xf0{left:103.273333pt;}
.x9c{left:105.761333pt;}
.x1{left:109.750667pt;}
.x2a{left:117.818667pt;}
.x3{left:121.164000pt;}
.x2e{left:123.817333pt;}
.xd6{left:126.014667pt;}
.xcc{left:127.132000pt;}
.x37{left:128.429333pt;}
.x26{left:130.809333pt;}
.x9{left:132.018667pt;}
.x7c{left:134.640000pt;}
.x8e{left:136.846667pt;}
.x4f{left:141.052000pt;}
.x2{left:143.544000pt;}
.x8{left:152.289333pt;}
.x53{left:156.664000pt;}
.x4e{left:161.040000pt;}
.x43{left:163.174667pt;}
.xd7{left:164.870667pt;}
.xb0{left:167.877333pt;}
.x69{left:170.077333pt;}
.x8a{left:171.161333pt;}
.x2f{left:173.128000pt;}
.x7d{left:177.676000pt;}
.x1c{left:180.610667pt;}
.xba{left:184.861333pt;}
.x54{left:188.025333pt;}
.x6a{left:190.473333pt;}
.xdd{left:193.001333pt;}
.xbb{left:194.893333pt;}
.xe9{left:197.924000pt;}
.xbc{left:200.662667pt;}
.xea{left:201.958667pt;}
.x74{left:203.470667pt;}
.x1d{left:204.728000pt;}
.x45{left:208.969333pt;}
.x90{left:215.012000pt;}
.x1e{left:216.300000pt;}
.xeb{left:217.900000pt;}
.x7e{left:219.736000pt;}
.xc2{left:221.328000pt;}
.xbd{left:223.366667pt;}
.x85{left:225.630667pt;}
.x46{left:226.786667pt;}
.x91{left:228.997333pt;}
.xbe{left:231.197333pt;}
.xe0{left:232.088000pt;}
.x55{left:234.686667pt;}
.xa6{left:237.589333pt;}
.xa7{left:241.474667pt;}
.xad{left:242.846667pt;}
.x1f{left:247.033333pt;}
.x18{left:249.066667pt;}
.xd8{left:251.136000pt;}
.x49{left:252.381333pt;}
.xbf{left:253.836000pt;}
.x9f{left:256.613333pt;}
.x20{left:258.605333pt;}
.xc0{left:259.605333pt;}
.x40{left:260.526667pt;}
.xa0{left:263.834667pt;}
.x21{left:265.246667pt;}
.x56{left:267.082667pt;}
.x38{left:271.152000pt;}
.xd9{left:273.205333pt;}
.x36{left:274.306667pt;}
.x22{left:275.445333pt;}
.x5e{left:276.349333pt;}
.xe6{left:277.505333pt;}
.x44{left:281.854667pt;}
.x57{left:283.244000pt;}
.xca{left:284.150667pt;}
.x1a{left:287.797333pt;}
.x23{left:289.466667pt;}
.x78{left:290.693333pt;}
.x5d{left:292.740000pt;}
.x39{left:293.790667pt;}
.xe1{left:294.936000pt;}
.x24{left:295.976000pt;}
.xc5{left:297.270667pt;}
.xc1{left:298.329333pt;}
.x25{left:299.665333pt;}
.xde{left:302.824000pt;}
.xc3{left:303.804000pt;}
.x1b{left:308.609333pt;}
.xe3{left:310.498667pt;}
.x42{left:313.154667pt;}
.x58{left:315.838667pt;}
.x9d{left:316.861333pt;}
.xee{left:320.984000pt;}
.x67{left:324.274667pt;}
.x41{left:326.956000pt;}
.x77{left:329.408000pt;}
.x6{left:332.556000pt;}
.x5{left:335.678667pt;}
.x7f{left:338.946667pt;}
.xa1{left:341.253333pt;}
.x32{left:342.217333pt;}
.x3a{left:348.989333pt;}
.x33{left:350.701333pt;}
.x5f{left:352.890667pt;}
.x4{left:357.892000pt;}
.xda{left:362.501333pt;}
.x75{left:365.561333pt;}
.x80{left:366.720000pt;}
.x7{left:367.832000pt;}
.xb4{left:370.868000pt;}
.x81{left:372.489333pt;}
.x68{left:374.500000pt;}
.xef{left:375.916000pt;}
.xcb{left:377.197333pt;}
.xb2{left:381.981333pt;}
.x63{left:383.004000pt;}
.xae{left:386.116000pt;}
.x19{left:389.629333pt;}
.x62{left:390.686667pt;}
.x60{left:392.321333pt;}
.x2b{left:393.214667pt;}
.xec{left:399.042667pt;}
.x7b{left:401.628000pt;}
.x79{left:404.006667pt;}
.xe4{left:405.202667pt;}
.x3b{left:406.461333pt;}
.xb6{left:408.469333pt;}
.xb5{left:411.080000pt;}
.x61{left:412.676000pt;}
.xa2{left:414.580000pt;}
.x9e{left:416.826667pt;}
.x92{left:419.957333pt;}
.xa8{left:421.798667pt;}
.xa{left:423.760000pt;}
.xa3{left:425.814667pt;}
.x3c{left:427.652000pt;}
.x93{left:430.866667pt;}
.xa4{left:432.278667pt;}
.x94{left:436.409333pt;}
.xaf{left:437.566667pt;}
.xe7{left:439.077333pt;}
.xa9{left:444.161333pt;}
.xed{left:447.700000pt;}
.x50{left:452.842667pt;}
.xb{left:454.330667pt;}
.xc9{left:456.101333pt;}
.xb7{left:460.340000pt;}
.xe5{left:461.764000pt;}
.x95{left:463.556000pt;}
.x10{left:465.121333pt;}
.x7a{left:467.078667pt;}
.xc{left:469.598667pt;}
.xaa{left:475.321333pt;}
.xb3{left:477.460000pt;}
.x8b{left:479.780000pt;}
.xa5{left:481.296000pt;}
.x64{left:483.469333pt;}
.xcd{left:485.974667pt;}
.x96{left:487.326667pt;}
.x8f{left:490.718667pt;}
.x97{left:492.870667pt;}
.x8c{left:493.932000pt;}
.xe2{left:496.586667pt;}
.x11{left:497.681333pt;}
.xd{left:500.296000pt;}
.xce{left:501.274667pt;}
.x47{left:503.794667pt;}
.x65{left:506.825333pt;}
.xc6{left:510.529333pt;}
.x12{left:513.050667pt;}
.x6b{left:514.060000pt;}
.xb8{left:516.129333pt;}
.x51{left:517.534667pt;}
.xdb{left:518.729333pt;}
.x98{left:519.905333pt;}
.xc4{left:521.265333pt;}
.x13{left:522.918667pt;}
.x48{left:524.149333pt;}
.xdc{left:525.857333pt;}
.x14{left:528.186667pt;}
.x99{left:529.489333pt;}
.x66{left:531.621333pt;}
.xdf{left:534.726667pt;}
.x27{left:541.220000pt;}
.x8d{left:546.278667pt;}
.x86{left:548.322667pt;}
.x28{left:552.066667pt;}
.x87{left:553.865333pt;}
.xcf{left:556.054667pt;}
.xd1{left:558.017333pt;}
.x15{left:560.465333pt;}
.x9a{left:561.812000pt;}
.xe{left:564.814667pt;}
.x16{left:567.949333pt;}
.x9b{left:568.938667pt;}
.xb9{left:572.221333pt;}
.x76{left:574.697333pt;}
.x88{left:576.504000pt;}
.xac{left:577.489333pt;}
.x3d{left:578.969333pt;}
.xf{left:579.876000pt;}
.x17{left:581.730667pt;}
.x6c{left:582.769333pt;}
.xd0{left:583.949333pt;}
.x3e{left:586.198667pt;}
.xab{left:591.054667pt;}
.x5a{left:595.186667pt;}
.x3f{left:598.310667pt;}
.x5b{left:603.672000pt;}
.xb1{left:605.853333pt;}
.x84{left:607.572000pt;}
.x4a{left:609.170667pt;}
.xc7{left:612.672000pt;}
.x59{left:617.685333pt;}
.x4b{left:618.809333pt;}
.xd4{left:622.188000pt;}
.x30{left:624.561333pt;}
.x89{left:625.709333pt;}
.x34{left:629.294667pt;}
.x6d{left:631.044000pt;}
.xc8{left:632.784000pt;}
.xd3{left:635.394667pt;}
.x6e{left:638.564000pt;}
.x35{left:642.484000pt;}
.x6f{left:644.249333pt;}
.x82{left:645.265333pt;}
.xd2{left:648.408000pt;}
.x4c{left:650.533333pt;}
.x70{left:654.180000pt;}
.x31{left:656.910667pt;}
.xe8{left:658.646667pt;}
.x4d{left:663.793333pt;}
.x71{left:665.672000pt;}
.x83{left:671.430667pt;}
.xd5{left:672.457333pt;}
.x2c{left:674.014667pt;}
.x72{left:675.400000pt;}
.x5c{left:687.313333pt;}
.x2d{left:689.368000pt;}
.x73{left:690.756000pt;}
}




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