
    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_77b27c77b7098abacd77791c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_8a86a3ec56a0af2bd3d2882a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_308e2728d371ac9a96f87125.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_807f5c558297bdf96cfcfe92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_5cab6de4b8da3970d9daef46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_b761615ea887d0adf71f97d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_7aca614fa9238dadd78b064d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e938cd3fb863ced0740b227a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719238;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_2c8131a4e23f879cb6e5a9e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_90563fb3db8c0682a0d65e40.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934500;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_48422243a73966ed836b5378.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_f3889fca2d6c8fa904cb875b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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_8a86a3ec56a0af2bd3d2882a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;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_308e2728d371ac9a96f87125.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;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_701b968acb8abe697fbc32ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_8a70bd149369701f99389bb8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_f3889fca2d6c8fa904cb875b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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_8a86a3ec56a0af2bd3d2882a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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_308e2728d371ac9a96f87125.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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_701b968acb8abe697fbc32ee.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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_8a86a3ec56a0af2bd3d2882a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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_308e2728d371ac9a96f87125.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_701b968acb8abe697fbc32ee.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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_8a86a3ec56a0af2bd3d2882a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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_308e2728d371ac9a96f87125.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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_701b968acb8abe697fbc32ee.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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_e0868c8c9c6374ac16defa6b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.276000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d912d0cdfbdbd08a490179ff.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v4{vertical-align:-10.824000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.210000px;}
.v1{vertical-align:20.400000px;}
.ls66{letter-spacing:-3.402000px;}
.ls1b{letter-spacing:-2.220000px;}
.lsab{letter-spacing:-1.305000px;}
.ls96{letter-spacing:-1.188000px;}
.lsae{letter-spacing:-1.125000px;}
.ls9c{letter-spacing:-1.092000px;}
.ls5c{letter-spacing:-1.026000px;}
.ls77{letter-spacing:-0.864000px;}
.lsa9{letter-spacing:-0.810000px;}
.ls99{letter-spacing:-0.798000px;}
.ls98{letter-spacing:-0.756000px;}
.ls69{letter-spacing:-0.702000px;}
.lsb8{letter-spacing:-0.675000px;}
.ls48{letter-spacing:-0.648000px;}
.ls9f{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.486000px;}
.ls44{letter-spacing:-0.432000px;}
.ls76{letter-spacing:-0.421200px;}
.lsb5{letter-spacing:-0.405000px;}
.ls46{letter-spacing:-0.378000px;}
.lsb6{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.324000px;}
.lsb7{letter-spacing:-0.315000px;}
.ls41{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.255000px;}
.ls8e{letter-spacing:-0.240000px;}
.lsba{letter-spacing:-0.225000px;}
.ls3d{letter-spacing:-0.216000px;}
.ls78{letter-spacing:-0.180000px;}
.ls5f{letter-spacing:-0.175500px;}
.ls9b{letter-spacing:-0.168000px;}
.ls39{letter-spacing:-0.162000px;}
.ls67{letter-spacing:-0.140400px;}
.lsb4{letter-spacing:-0.135000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls97{letter-spacing:-0.105300px;}
.ls1d{letter-spacing:-0.102000px;}
.lsac{letter-spacing:-0.090000px;}
.ls42{letter-spacing:-0.070200px;}
.ls5d{letter-spacing:-0.060000px;}
.ls3a{letter-spacing:-0.054000px;}
.lsb9{letter-spacing:-0.045000px;}
.ls3b{letter-spacing:-0.035100px;}
.ls1a{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.003450px;}
.lsd{letter-spacing:0.005400px;}
.ls59{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.013200px;}
.ls6{letter-spacing:0.013800px;}
.ls36{letter-spacing:0.021600px;}
.ls3{letter-spacing:0.022200px;}
.ls4{letter-spacing:0.022800px;}
.ls35{letter-spacing:0.027000px;}
.ls2{letter-spacing:0.032400px;}
.ls25{letter-spacing:0.035100px;}
.lsaf{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.048600px;}
.ls26{letter-spacing:0.054000px;}
.ls82{letter-spacing:0.059400px;}
.ls80{letter-spacing:0.060000px;}
.lsa5{letter-spacing:0.070200px;}
.ls63{letter-spacing:0.075600px;}
.ls79{letter-spacing:0.081000px;}
.lsb1{letter-spacing:0.085500px;}
.lsad{letter-spacing:0.090000px;}
.ls47{letter-spacing:0.105300px;}
.lsc{letter-spacing:0.108000px;}
.ls72{letter-spacing:0.120000px;}
.ls4f{letter-spacing:0.133800px;}
.ls38{letter-spacing:0.135000px;}
.ls3e{letter-spacing:0.140400px;}
.ls71{letter-spacing:0.145800px;}
.lsa6{letter-spacing:0.151200px;}
.lsa4{letter-spacing:0.156600px;}
.ls21{letter-spacing:0.162000px;}
.ls54{letter-spacing:0.165600px;}
.ls9{letter-spacing:0.178200px;}
.ls7{letter-spacing:0.206400px;}
.ls9a{letter-spacing:0.210000px;}
.ls60{letter-spacing:0.210600px;}
.ls28{letter-spacing:0.216000px;}
.ls58{letter-spacing:0.237600px;}
.ls75{letter-spacing:0.240000px;}
.ls8d{letter-spacing:0.243000px;}
.ls3f{letter-spacing:0.245700px;}
.ls83{letter-spacing:0.246000px;}
.ls33{letter-spacing:0.247200px;}
.ls7c{letter-spacing:0.259200px;}
.ls11{letter-spacing:0.267000px;}
.lsb{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.275400px;}
.ls84{letter-spacing:0.294000px;}
.ls27{letter-spacing:0.297000px;}
.ls64{letter-spacing:0.300000px;}
.lsa1{letter-spacing:0.302400px;}
.ls23{letter-spacing:0.306000px;}
.ls6d{letter-spacing:0.313200px;}
.ls24{letter-spacing:0.315900px;}
.lsa{letter-spacing:0.324000px;}
.ls7b{letter-spacing:0.329400px;}
.ls37{letter-spacing:0.334800px;}
.ls85{letter-spacing:0.340200px;}
.ls22{letter-spacing:0.356400px;}
.ls65{letter-spacing:0.360000px;}
.ls86{letter-spacing:0.367200px;}
.ls93{letter-spacing:0.372600px;}
.ls29{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.388200px;}
.ls87{letter-spacing:0.388800px;}
.lsb3{letter-spacing:0.396000px;}
.ls56{letter-spacing:0.408000px;}
.ls8b{letter-spacing:0.415800px;}
.ls61{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.430650px;}
.lsf{letter-spacing:0.432000px;}
.ls7f{letter-spacing:0.442800px;}
.lsa2{letter-spacing:0.456300px;}
.ls70{letter-spacing:0.459000px;}
.ls74{letter-spacing:0.464400px;}
.ls34{letter-spacing:0.480000px;}
.lsa0{letter-spacing:0.480600px;}
.ls12{letter-spacing:0.486000px;}
.ls4a{letter-spacing:0.491400px;}
.ls62{letter-spacing:0.496800px;}
.ls57{letter-spacing:0.523800px;}
.ls30{letter-spacing:0.540000px;}
.ls91{letter-spacing:0.550800px;}
.ls6e{letter-spacing:0.556200px;}
.ls1f{letter-spacing:0.561000px;}
.ls6f{letter-spacing:0.567000px;}
.ls5b{letter-spacing:0.582000px;}
.ls2a{letter-spacing:0.583200px;}
.ls6c{letter-spacing:0.584400px;}
.lsaa{letter-spacing:0.585000px;}
.ls14{letter-spacing:0.594000px;}
.ls68{letter-spacing:0.600000px;}
.ls9d{letter-spacing:0.610200px;}
.lse{letter-spacing:0.626400px;}
.lsb2{letter-spacing:0.630000px;}
.ls55{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.653400px;}
.ls16{letter-spacing:0.663000px;}
.ls7d{letter-spacing:0.672000px;}
.ls7e{letter-spacing:0.691200px;}
.ls32{letter-spacing:0.696600px;}
.ls2d{letter-spacing:0.702000px;}
.ls2b{letter-spacing:0.720000px;}
.ls90{letter-spacing:0.734400px;}
.ls5a{letter-spacing:0.745200px;}
.ls43{letter-spacing:0.756000px;}
.ls7a{letter-spacing:0.777600px;}
.ls49{letter-spacing:0.788400px;}
.ls92{letter-spacing:0.804600px;}
.ls2e{letter-spacing:0.810000px;}
.ls88{letter-spacing:0.831600px;}
.ls45{letter-spacing:0.840000px;}
.ls2c{letter-spacing:0.846000px;}
.lsb0{letter-spacing:0.855000px;}
.ls6b{letter-spacing:0.864000px;}
.ls8a{letter-spacing:0.869400px;}
.lsa7{letter-spacing:0.891000px;}
.lsa3{letter-spacing:0.901800px;}
.ls4b{letter-spacing:0.918000px;}
.ls8c{letter-spacing:0.939600px;}
.ls19{letter-spacing:0.960000px;}
.ls5e{letter-spacing:0.972000px;}
.ls73{letter-spacing:0.977400px;}
.ls94{letter-spacing:1.015200px;}
.ls52{letter-spacing:1.026000px;}
.ls53{letter-spacing:1.042200px;}
.ls13{letter-spacing:1.058400px;}
.ls89{letter-spacing:1.063800px;}
.ls50{letter-spacing:1.069200px;}
.ls51{letter-spacing:1.080000px;}
.ls6a{letter-spacing:1.134000px;}
.ls8f{letter-spacing:1.285200px;}
.ls2f{letter-spacing:1.291800px;}
.ls4c{letter-spacing:1.296000px;}
.ls4e{letter-spacing:1.404000px;}
.ls4d{letter-spacing:2.297400px;}
.ls0{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsa8{letter-spacing:4.620000px;}
.ls95{letter-spacing:6.120000px;}
.ls9e{letter-spacing:14.202000px;}
.ls81{letter-spacing:14.742000px;}
.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;}
}
.ws2c{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws75{word-spacing:-13.596000px;}
.ws6{word-spacing:-13.500000px;}
.wsa0{word-spacing:-12.852000px;}
.ws50{word-spacing:-12.690000px;}
.ws8c{word-spacing:-12.528000px;}
.ws2e{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.360000px;}
.wsa3{word-spacing:-12.312000px;}
.ws2d{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.wsa1{word-spacing:-12.150000px;}
.ws86{word-spacing:-12.096000px;}
.ws28{word-spacing:-12.042000px;}
.ws72{word-spacing:-11.772000px;}
.ws9d{word-spacing:-11.718000px;}
.ws6a{word-spacing:-11.556000px;}
.ws74{word-spacing:-11.502000px;}
.wsa5{word-spacing:-11.250000px;}
.ws5{word-spacing:-11.124000px;}
.ws9e{word-spacing:-10.530000px;}
.ws49{word-spacing:-10.314000px;}
.wsa6{word-spacing:-10.305000px;}
.ws89{word-spacing:-10.260000px;}
.ws88{word-spacing:-10.152000px;}
.ws4{word-spacing:-10.140000px;}
.wsb5{word-spacing:-10.125000px;}
.wsa8{word-spacing:-10.098000px;}
.ws42{word-spacing:-10.044000px;}
.ws15{word-spacing:-9.990000px;}
.wsb4{word-spacing:-9.945000px;}
.ws84{word-spacing:-9.882000px;}
.ws4b{word-spacing:-9.828000px;}
.ws95{word-spacing:-9.774000px;}
.ws8f{word-spacing:-9.744000px;}
.ws4a{word-spacing:-9.720000px;}
.ws85{word-spacing:-9.666000px;}
.ws4e{word-spacing:-9.612000px;}
.ws6e{word-spacing:-9.558000px;}
.ws90{word-spacing:-9.534000px;}
.ws4d{word-spacing:-9.504000px;}
.ws8a{word-spacing:-9.450000px;}
.ws5a{word-spacing:-9.396000px;}
.ws4c{word-spacing:-9.342000px;}
.ws8b{word-spacing:-9.288000px;}
.wsaa{word-spacing:-9.180000px;}
.ws8e{word-spacing:-9.114000px;}
.ws5c{word-spacing:-9.018000px;}
.wsa4{word-spacing:-9.000000px;}
.ws68{word-spacing:-8.856000px;}
.ws4f{word-spacing:-8.459100px;}
.ws9f{word-spacing:-8.424000px;}
.ws26{word-spacing:-8.283600px;}
.ws2a{word-spacing:-8.213400px;}
.ws52{word-spacing:-8.178300px;}
.ws29{word-spacing:-8.108100px;}
.ws2f{word-spacing:-8.073000px;}
.wsa2{word-spacing:-8.037900px;}
.wsb1{word-spacing:-8.010000px;}
.ws27{word-spacing:-8.002800px;}
.ws24{word-spacing:-7.967700px;}
.ws25{word-spacing:-7.932600px;}
.ws2b{word-spacing:-7.897500px;}
.ws8d{word-spacing:-7.862400px;}
.ws69{word-spacing:-7.827300px;}
.ws51{word-spacing:-7.792200px;}
.ws73{word-spacing:-7.546500px;}
.ws7{word-spacing:-6.630000px;}
.ws94{word-spacing:-6.120000px;}
.ws5e{word-spacing:-5.508000px;}
.ws9c{word-spacing:-4.968000px;}
.wsa7{word-spacing:-4.620000px;}
.wsc2{word-spacing:-3.960000px;}
.ws97{word-spacing:-3.864000px;}
.wsb{word-spacing:-3.840000px;}
.wsa{word-spacing:-3.600000px;}
.ws10{word-spacing:-3.456000px;}
.ws9{word-spacing:-3.276000px;}
.ws23{word-spacing:-2.760000px;}
.wsd{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.wse{word-spacing:-2.400000px;}
.ws48{word-spacing:-2.052000px;}
.ws3a{word-spacing:-2.040000px;}
.wsc0{word-spacing:-1.998000px;}
.ws79{word-spacing:-1.944000px;}
.ws56{word-spacing:-1.890000px;}
.ws57{word-spacing:-1.860000px;}
.ws13{word-spacing:-1.836000px;}
.ws18{word-spacing:-1.782000px;}
.ws55{word-spacing:-1.728000px;}
.ws1a{word-spacing:-1.674000px;}
.ws11{word-spacing:-1.620000px;}
.wsb6{word-spacing:-1.575000px;}
.ws54{word-spacing:-1.566000px;}
.ws1e{word-spacing:-1.530000px;}
.ws61{word-spacing:-1.512000px;}
.wsaf{word-spacing:-1.485000px;}
.ws71{word-spacing:-1.404000px;}
.ws39{word-spacing:-1.386000px;}
.ws6c{word-spacing:-1.350000px;}
.ws64{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.260000px;}
.ws30{word-spacing:-1.242000px;}
.ws82{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.080000px;}
.wsac{word-spacing:-1.035000px;}
.ws34{word-spacing:-1.026000px;}
.ws46{word-spacing:-0.972000px;}
.ws99{word-spacing:-0.966000px;}
.ws96{word-spacing:-0.924000px;}
.ws80{word-spacing:-0.918000px;}
.ws7e{word-spacing:-0.864000px;}
.wsad{word-spacing:-0.855000px;}
.ws47{word-spacing:-0.840000px;}
.ws63{word-spacing:-0.810000px;}
.ws45{word-spacing:-0.756000px;}
.ws3b{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.702000px;}
.ws21{word-spacing:-0.663000px;}
.ws78{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.648000px;}
.wsae{word-spacing:-0.630000px;}
.ws70{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.594000px;}
.wsbc{word-spacing:-0.585000px;}
.ws22{word-spacing:-0.561000px;}
.ws14{word-spacing:-0.540000px;}
.wsb7{word-spacing:-0.495000px;}
.ws3d{word-spacing:-0.486000px;}
.ws65{word-spacing:-0.480000px;}
.ws12{word-spacing:-0.432000px;}
.ws5f{word-spacing:-0.420000px;}
.wsbf{word-spacing:-0.405000px;}
.ws60{word-spacing:-0.378000px;}
.wsb2{word-spacing:-0.360000px;}
.ws6f{word-spacing:-0.324000px;}
.wsbd{word-spacing:-0.315000px;}
.ws83{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.270000px;}
.ws1b{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.162000px;}
.wsbe{word-spacing:-0.135000px;}
.ws7d{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.108000px;}
.wsa9{word-spacing:-0.070200px;}
.ws66{word-spacing:-0.060000px;}
.ws31{word-spacing:-0.054000px;}
.wsb8{word-spacing:-0.045000px;}
.ws8{word-spacing:0.000000px;}
.ws1c{word-spacing:0.054000px;}
.ws76{word-spacing:0.060000px;}
.wsb0{word-spacing:0.090000px;}
.ws1f{word-spacing:0.102000px;}
.ws32{word-spacing:0.108000px;}
.ws9b{word-spacing:0.126000px;}
.ws3e{word-spacing:0.162000px;}
.ws9a{word-spacing:0.168000px;}
.ws1d{word-spacing:0.216000px;}
.ws87{word-spacing:0.240000px;}
.ws20{word-spacing:0.255000px;}
.ws3f{word-spacing:0.270000px;}
.wsb9{word-spacing:0.315000px;}
.ws37{word-spacing:0.324000px;}
.ws41{word-spacing:0.378000px;}
.wsab{word-spacing:0.405000px;}
.ws7f{word-spacing:0.432000px;}
.ws6b{word-spacing:0.486000px;}
.ws3c{word-spacing:0.540000px;}
.ws43{word-spacing:0.594000px;}
.wsc1{word-spacing:0.648000px;}
.ws33{word-spacing:0.702000px;}
.ws5d{word-spacing:0.756000px;}
.ws98{word-spacing:0.798000px;}
.ws36{word-spacing:0.810000px;}
.ws7c{word-spacing:0.864000px;}
.ws7a{word-spacing:0.918000px;}
.ws81{word-spacing:0.972000px;}
.ws35{word-spacing:1.026000px;}
.wsbb{word-spacing:1.035000px;}
.wsba{word-spacing:1.080000px;}
.wsb3{word-spacing:1.125000px;}
.ws58{word-spacing:1.134000px;}
.ws7b{word-spacing:1.188000px;}
.ws5b{word-spacing:1.242000px;}
.ws40{word-spacing:1.296000px;}
.ws6d{word-spacing:1.350000px;}
.ws77{word-spacing:1.458000px;}
.ws67{word-spacing:1.944000px;}
.ws59{word-spacing:1.998000px;}
.ws93{word-spacing:62.034000px;}
.ws92{word-spacing:72.114000px;}
.ws91{word-spacing:128.100000px;}
._c{margin-left:-10.954200px;}
._1{margin-left:-9.859200px;}
._2{margin-left:-8.455200px;}
._12{margin-left:-7.323600px;}
._7{margin-left:-6.053400px;}
._5{margin-left:-4.703400px;}
._3{margin-left:-3.447600px;}
._0{margin-left:-1.776000px;}
._6{width:1.009800px;}
._4{width:2.178600px;}
._e{width:4.369800px;}
._11{width:5.832000px;}
._24{width:6.841800px;}
._9{width:8.128200px;}
._8{width:9.765000px;}
._d{width:10.990200px;}
._10{width:12.013800px;}
._19{width:33.432000px;}
._13{width:38.697600px;}
._f{width:46.765800px;}
._b{width:47.766000px;}
._a{width:49.357200px;}
._15{width:63.126000px;}
._22{width:81.648000px;}
._1d{width:91.728000px;}
._18{width:143.220000px;}
._21{width:187.824000px;}
._1c{width:203.490000px;}
._17{width:213.570000px;}
._1e{width:215.934000px;}
._20{width:226.014000px;}
._23{width:236.169600px;}
._1a{width:240.957600px;}
._16{width:298.956000px;}
._1f{width:304.542000px;}
._1b{width:319.410000px;}
._14{width:824.375400px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2c{bottom:68.313900px;}
.y168{bottom:68.551500px;}
.yac{bottom:68.556000px;}
.y11a{bottom:68.562000px;}
.y19f{bottom:69.505350px;}
.y13d{bottom:70.300800px;}
.y71{bottom:71.794800px;}
.ye2{bottom:71.797800px;}
.y17d{bottom:72.558300px;}
.y14e{bottom:73.299300px;}
.y215{bottom:76.357050px;}
.y260{bottom:78.546300px;}
.y2b{bottom:83.307900px;}
.y167{bottom:83.550000px;}
.yab{bottom:83.554500px;}
.y119{bottom:83.560500px;}
.y19e{bottom:84.503850px;}
.y13c{bottom:85.299300px;}
.ye1{bottom:86.796300px;}
.y70{bottom:86.803800px;}
.y17c{bottom:87.556800px;}
.y14d{bottom:88.297800px;}
.y214{bottom:89.103300px;}
.y25f{bottom:93.544800px;}
.y1d1{bottom:93.807000px;}
.y2a{bottom:98.307900px;}
.yaa{bottom:98.553000px;}
.y118{bottom:98.559000px;}
.y19d{bottom:99.502350px;}
.y13b{bottom:100.297800px;}
.ye0{bottom:101.794800px;}
.y6f{bottom:101.802300px;}
.y213{bottom:101.849550px;}
.y17b{bottom:102.555300px;}
.y14c{bottom:103.296300px;}
.y25e{bottom:108.543300px;}
.y1d0{bottom:108.805500px;}
.y166{bottom:111.439650px;}
.y29{bottom:113.307900px;}
.ya9{bottom:113.551500px;}
.y117{bottom:113.557500px;}
.y1be{bottom:114.306150px;}
.y19c{bottom:114.500850px;}
.y212{bottom:114.595800px;}
.y13a{bottom:115.296300px;}
.ydf{bottom:116.796300px;}
.y6e{bottom:116.800800px;}
.y17a{bottom:117.553800px;}
.y14b{bottom:118.294800px;}
.y25d{bottom:123.543300px;}
.y1cf{bottom:123.804000px;}
.y165{bottom:126.438150px;}
.y211{bottom:127.342050px;}
.y28{bottom:128.307900px;}
.ya8{bottom:128.550000px;}
.y116{bottom:128.556000px;}
.y1bd{bottom:129.304650px;}
.y19b{bottom:129.499350px;}
.y139{bottom:130.294800px;}
.yde{bottom:131.794800px;}
.y6d{bottom:131.799300px;}
.y179{bottom:132.552300px;}
.y14a{bottom:133.296300px;}
.y1ce{bottom:138.807000px;}
.y210{bottom:140.088300px;}
.y164{bottom:141.436650px;}
.y115{bottom:143.554500px;}
.y1bc{bottom:144.303150px;}
.y19a{bottom:144.497850px;}
.y138{bottom:145.293300px;}
.y6c{bottom:146.797800px;}
.ydd{bottom:146.799300px;}
.y178{bottom:147.550800px;}
.y27{bottom:147.636900px;}
.y149{bottom:148.294800px;}
.y25c{bottom:150.564300px;}
.y20f{bottom:152.834550px;}
.y1cd{bottom:153.805500px;}
.y163{bottom:156.435150px;}
.y114{bottom:158.553000px;}
.ya7{bottom:158.634750px;}
.y1bb{bottom:159.301650px;}
.y199{bottom:159.496350px;}
.y6b{bottom:161.796300px;}
.ydc{bottom:161.797800px;}
.y177{bottom:162.549300px;}
.y148{bottom:163.293300px;}
.y25b{bottom:165.562800px;}
.y20e{bottom:165.580800px;}
.y1cc{bottom:168.804000px;}
.y162{bottom:171.433650px;}
.y113{bottom:173.551500px;}
.ya6{bottom:173.633250px;}
.y1ba{bottom:174.300150px;}
.y198{bottom:174.509850px;}
.y6a{bottom:176.794800px;}
.ydb{bottom:176.796300px;}
.y176{bottom:177.547800px;}
.y137{bottom:178.321800px;}
.y20d{bottom:178.327050px;}
.y25a{bottom:180.561300px;}
.y1cb{bottom:183.816000px;}
.y161{bottom:186.432150px;}
.y112{bottom:188.550000px;}
.ya5{bottom:188.631750px;}
.y1b9{bottom:189.298650px;}
.y197{bottom:189.508350px;}
.y20c{bottom:191.073300px;}
.yda{bottom:191.794800px;}
.y69{bottom:191.796300px;}
.y175{bottom:192.546300px;}
.y136{bottom:193.320300px;}
.y259{bottom:195.559800px;}
.y147{bottom:196.303800px;}
.y26{bottom:197.188800px;}
.y1ca{bottom:198.814500px;}
.y160{bottom:201.430650px;}
.ya4{bottom:203.630250px;}
.y20b{bottom:203.819550px;}
.y1b8{bottom:204.297150px;}
.y196{bottom:204.506850px;}
.yd9{bottom:206.793300px;}
.y68{bottom:206.794800px;}
.y174{bottom:207.544800px;}
.y135{bottom:208.318800px;}
.y258{bottom:210.558300px;}
.y146{bottom:211.302300px;}
.y25{bottom:212.187300px;}
.y1c9{bottom:213.813000px;}
.y111{bottom:215.615100px;}
.y15f{bottom:216.429150px;}
.y20a{bottom:216.565800px;}
.ya3{bottom:218.628750px;}
.y1b7{bottom:219.295650px;}
.y195{bottom:219.505350px;}
.y67{bottom:221.793300px;}
.y173{bottom:222.543300px;}
.y134{bottom:223.317300px;}
.y257{bottom:225.556800px;}
.y145{bottom:226.300800px;}
.y24{bottom:227.185800px;}
.y1c8{bottom:228.811500px;}
.y209{bottom:229.312050px;}
.y110{bottom:230.613600px;}
.y15e{bottom:231.427650px;}
.ya2{bottom:233.627250px;}
.y1b6{bottom:234.294150px;}
.y194{bottom:234.503850px;}
.y133{bottom:238.315800px;}
.yd8{bottom:239.797800px;}
.y256{bottom:240.555300px;}
.y144{bottom:241.299300px;}
.y208{bottom:242.058300px;}
.y23{bottom:242.194800px;}
.y1c7{bottom:243.810000px;}
.y10f{bottom:245.612100px;}
.y15d{bottom:246.426150px;}
.ya1{bottom:248.625750px;}
.y1b5{bottom:249.292650px;}
.y193{bottom:249.502350px;}
.y132{bottom:253.314300px;}
.yd7{bottom:254.796300px;}
.y207{bottom:254.804550px;}
.y66{bottom:254.806800px;}
.y255{bottom:255.553800px;}
.y143{bottom:256.297800px;}
.y22{bottom:257.193300px;}
.y1c6{bottom:258.808500px;}
.y10e{bottom:260.610600px;}
.y15c{bottom:261.424650px;}
.ya0{bottom:263.624250px;}
.y192{bottom:264.500850px;}
.y206{bottom:267.550800px;}
.y131{bottom:268.312800px;}
.yd6{bottom:269.794800px;}
.y65{bottom:269.805300px;}
.y254{bottom:270.552300px;}
.y180{bottom:271.081950px;}
.y142{bottom:271.296300px;}
.y21{bottom:272.191800px;}
.y1c5{bottom:273.807000px;}
.y10d{bottom:275.609100px;}
.y15b{bottom:276.423150px;}
.y9f{bottom:278.622750px;}
.y191{bottom:279.499350px;}
.y205{bottom:280.297050px;}
.y130{bottom:283.311300px;}
.yd5{bottom:284.793300px;}
.y64{bottom:284.803800px;}
.y253{bottom:285.550800px;}
.y17f{bottom:286.080450px;}
.y141{bottom:286.294800px;}
.y20{bottom:287.190300px;}
.y1c4{bottom:288.805500px;}
.y10c{bottom:290.607600px;}
.y15a{bottom:291.421650px;}
.y204{bottom:293.043300px;}
.y9e{bottom:293.621250px;}
.y190{bottom:294.497850px;}
.y12f{bottom:298.309800px;}
.y63{bottom:299.802300px;}
.y252{bottom:300.549300px;}
.y17e{bottom:301.078950px;}
.y140{bottom:301.293300px;}
.y1f{bottom:302.188800px;}
.y1c3{bottom:303.804000px;}
.y10b{bottom:305.606100px;}
.y203{bottom:305.793300px;}
.y9d{bottom:308.619750px;}
.y18f{bottom:309.496350px;}
.y12e{bottom:313.308300px;}
.y62{bottom:314.800800px;}
.y251{bottom:315.547800px;}
.y1e{bottom:317.187300px;}
.yd4{bottom:317.799300px;}
.y1c2{bottom:318.807000px;}
.y159{bottom:319.297800px;}
.y10a{bottom:320.604600px;}
.y9c{bottom:323.618250px;}
.y18e{bottom:324.497850px;}
.y12d{bottom:328.306800px;}
.y61{bottom:329.799300px;}
.y250{bottom:330.546300px;}
.y1d{bottom:332.185800px;}
.yd3{bottom:332.797800px;}
.y1c1{bottom:333.805500px;}
.y158{bottom:334.296300px;}
.y109{bottom:335.603100px;}
.y9b{bottom:338.616750px;}
.y202{bottom:338.800800px;}
.y18d{bottom:339.496350px;}
.y12c{bottom:343.305300px;}
.y60{bottom:344.797800px;}
.y24f{bottom:345.544800px;}
.y1c{bottom:347.187300px;}
.yd2{bottom:347.796300px;}
.y1c0{bottom:348.804000px;}
.y157{bottom:349.294800px;}
.y108{bottom:350.601600px;}
.y155{bottom:352.881600px;}
.y9a{bottom:353.615250px;}
.y201{bottom:353.799300px;}
.y18b{bottom:354.500850px;}
.y12b{bottom:358.303800px;}
.y18c{bottom:359.084850px;}
.y5f{bottom:359.796300px;}
.y24e{bottom:360.543300px;}
.y1b{bottom:362.185800px;}
.yd1{bottom:362.794800px;}
.y1bf{bottom:363.802500px;}
.y156{bottom:364.293300px;}
.y107{bottom:365.600100px;}
.y154{bottom:367.880100px;}
.y99{bottom:368.613750px;}
.y200{bottom:368.797800px;}
.y18a{bottom:369.499350px;}
.y12a{bottom:373.302300px;}
.y5e{bottom:374.794800px;}
.y24d{bottom:375.543300px;}
.y1a{bottom:377.221800px;}
.yd0{bottom:377.805300px;}
.y106{bottom:380.601600px;}
.y153{bottom:382.878600px;}
.y98{bottom:383.612250px;}
.y1ff{bottom:383.796300px;}
.y189{bottom:384.497850px;}
.y129{bottom:388.300800px;}
.y5d{bottom:389.793300px;}
.y19{bottom:392.220300px;}
.ycf{bottom:392.803800px;}
.y105{bottom:395.600100px;}
.y152{bottom:397.877100px;}
.y97{bottom:398.616750px;}
.y1fe{bottom:398.794800px;}
.y188{bottom:399.496350px;}
.y24c{bottom:402.745800px;}
.y128{bottom:403.299300px;}
.yce{bottom:407.802300px;}
.y104{bottom:410.598600px;}
.y151{bottom:412.875600px;}
.y96{bottom:413.615250px;}
.y1fd{bottom:413.796300px;}
.y187{bottom:414.494850px;}
.y1d8{bottom:414.747150px;}
.y24b{bottom:415.492050px;}
.y172{bottom:417.325950px;}
.y127{bottom:418.297800px;}
.y5c{bottom:422.794800px;}
.ycd{bottom:422.800800px;}
.y103{bottom:425.598600px;}
.y150{bottom:427.874100px;}
.y24a{bottom:428.238300px;}
.y95{bottom:428.613750px;}
.y1fc{bottom:428.794800px;}
.y186{bottom:429.494850px;}
.y1d7{bottom:429.745650px;}
.y171{bottom:432.324450px;}
.y126{bottom:433.296300px;}
.y5b{bottom:437.799300px;}
.y18{bottom:439.470300px;}
.y249{bottom:440.984550px;}
.y14f{bottom:442.872600px;}
.y94{bottom:443.612250px;}
.y1fb{bottom:443.797800px;}
.y1d6{bottom:444.744150px;}
.y170{bottom:447.322950px;}
.y125{bottom:448.294800px;}
.y102{bottom:452.656350px;}
.y5a{bottom:452.797800px;}
.y248{bottom:453.730800px;}
.y17{bottom:455.967300px;}
.y93{bottom:458.610750px;}
.y1fa{bottom:458.796300px;}
.y1d5{bottom:459.742650px;}
.y185{bottom:461.229150px;}
.y16f{bottom:462.321450px;}
.y124{bottom:463.293300px;}
.y247{bottom:466.477050px;}
.y101{bottom:467.654850px;}
.y59{bottom:467.796300px;}
.y16{bottom:472.464300px;}
.y1f9{bottom:473.794800px;}
.y1d4{bottom:474.741150px;}
.y184{bottom:476.227650px;}
.y16e{bottom:477.319950px;}
.y246{bottom:479.223300px;}
.y100{bottom:482.653350px;}
.y58{bottom:482.794800px;}
.y92{bottom:488.680650px;}
.y1f8{bottom:488.794800px;}
.y15{bottom:488.961300px;}
.y1d3{bottom:489.739650px;}
.y183{bottom:491.226150px;}
.y245{bottom:491.969550px;}
.y16d{bottom:492.318450px;}
.y123{bottom:496.305300px;}
.yff{bottom:497.651850px;}
.ycc{bottom:497.793300px;}
.y57{bottom:497.794800px;}
.y91{bottom:503.679150px;}
.y1f7{bottom:503.794800px;}
.y244{bottom:504.715800px;}
.y1d2{bottom:504.738150px;}
.y14{bottom:505.458300px;}
.y182{bottom:506.224650px;}
.y16c{bottom:507.316950px;}
.y122{bottom:511.303800px;}
.yfe{bottom:512.650350px;}
.y56{bottom:512.793300px;}
.y243{bottom:517.462050px;}
.y90{bottom:518.677650px;}
.y1f6{bottom:518.811300px;}
.y181{bottom:521.223150px;}
.y13{bottom:521.955300px;}
.y16b{bottom:522.315450px;}
.y121{bottom:526.302300px;}
.yfd{bottom:527.648850px;}
.y242{bottom:530.208300px;}
.ycb{bottom:530.824800px;}
.y8f{bottom:533.676150px;}
.y1f5{bottom:533.809800px;}
.y16a{bottom:537.313950px;}
.y12{bottom:538.452300px;}
.y120{bottom:541.300800px;}
.yfc{bottom:542.647350px;}
.y241{bottom:542.954550px;}
.y55{bottom:545.794800px;}
.yca{bottom:545.823300px;}
.y8e{bottom:548.674650px;}
.y1f4{bottom:548.808300px;}
.y169{bottom:552.312450px;}
.y11{bottom:554.949300px;}
.y240{bottom:555.700800px;}
.y11f{bottom:556.299300px;}
.y54{bottom:560.799300px;}
.yc9{bottom:560.821800px;}
.y8d{bottom:563.673150px;}
.y1f3{bottom:563.806800px;}
.y23f{bottom:568.447050px;}
.yfb{bottom:569.706450px;}
.y11e{bottom:571.297800px;}
.y10{bottom:571.446300px;}
.y53{bottom:575.797800px;}
.yc8{bottom:575.820300px;}
.y8c{bottom:578.673150px;}
.y1f2{bottom:578.805300px;}
.y1b4{bottom:579.196950px;}
.y23e{bottom:581.193300px;}
.yfa{bottom:584.704950px;}
.y11d{bottom:586.296300px;}
.yf{bottom:587.943300px;}
.y52{bottom:590.796300px;}
.yc7{bottom:590.818800px;}
.y8b{bottom:593.676150px;}
.y1f1{bottom:593.803800px;}
.y23d{bottom:593.939550px;}
.y1b3{bottom:594.195450px;}
.yf9{bottom:599.703450px;}
.y11c{bottom:601.294800px;}
.ye{bottom:604.440300px;}
.y51{bottom:605.794800px;}
.yc6{bottom:605.817300px;}
.y23c{bottom:606.685800px;}
.y8a{bottom:608.674650px;}
.y1f0{bottom:608.802300px;}
.y1b2{bottom:609.193950px;}
.yf8{bottom:614.701950px;}
.y11b{bottom:616.293300px;}
.y23b{bottom:619.432050px;}
.y50{bottom:620.793300px;}
.yc5{bottom:620.815800px;}
.yd{bottom:620.937300px;}
.y89{bottom:623.673150px;}
.y1ef{bottom:623.800800px;}
.y1b1{bottom:624.192450px;}
.yf7{bottom:629.700450px;}
.y23a{bottom:632.178300px;}
.y4f{bottom:635.793300px;}
.yc4{bottom:635.814300px;}
.yc{bottom:637.434300px;}
.y88{bottom:638.674650px;}
.y1ee{bottom:638.799300px;}
.yf6{bottom:644.698950px;}
.y239{bottom:644.924550px;}
.yc3{bottom:650.812800px;}
.y87{bottom:653.673150px;}
.y1ed{bottom:653.797800px;}
.y238{bottom:657.670800px;}
.yf5{bottom:659.697450px;}
.yc2{bottom:665.811300px;}
.yb{bottom:667.434300px;}
.y13f{bottom:668.580450px;}
.y86{bottom:668.673150px;}
.y4e{bottom:668.794800px;}
.y1ec{bottom:668.796300px;}
.y237{bottom:670.417050px;}
.yf4{bottom:674.700450px;}
.yc1{bottom:680.809800px;}
.y236{bottom:683.163300px;}
.y13e{bottom:683.578950px;}
.y85{bottom:683.673150px;}
.y1eb{bottom:683.794800px;}
.y4d{bottom:683.796300px;}
.ya{bottom:685.434300px;}
.yf3{bottom:689.698950px;}
.yc0{bottom:695.808300px;}
.y235{bottom:695.909550px;}
.y84{bottom:698.674650px;}
.y4c{bottom:698.794800px;}
.y9{bottom:703.434300px;}
.yf2{bottom:704.697450px;}
.y234{bottom:708.655800px;}
.ybf{bottom:710.806800px;}
.y83{bottom:713.673150px;}
.y1ea{bottom:713.794800px;}
.y4b{bottom:713.797800px;}
.yf1{bottom:719.698950px;}
.y233{bottom:721.402050px;}
.ybe{bottom:725.805300px;}
.y82{bottom:728.674650px;}
.y4a{bottom:728.796300px;}
.y232{bottom:734.148300px;}
.yf0{bottom:734.697450px;}
.y8{bottom:736.410300px;}
.ybd{bottom:740.803800px;}
.y81{bottom:743.673150px;}
.y49{bottom:743.794800px;}
.y231{bottom:746.894550px;}
.yef{bottom:749.695950px;}
.ybc{bottom:755.802300px;}
.y2f{bottom:757.050000px;}
.y80{bottom:758.674650px;}
.y48{bottom:758.796300px;}
.y230{bottom:759.640800px;}
.ybb{bottom:770.800800px;}
.y22f{bottom:772.387050px;}
.y7f{bottom:773.673150px;}
.y47{bottom:773.794800px;}
.yee{bottom:776.746050px;}
.y2e{bottom:778.050000px;}
.y7{bottom:781.416300px;}
.y22e{bottom:785.133300px;}
.yba{bottom:785.799300px;}
.y7e{bottom:788.676150px;}
.y46{bottom:788.797800px;}
.y1e9{bottom:788.806800px;}
.yed{bottom:791.755050px;}
.y22d{bottom:797.879550px;}
.y2d{bottom:799.050000px;}
.yb9{bottom:800.797800px;}
.y7d{bottom:803.674650px;}
.y45{bottom:803.796300px;}
.y1e8{bottom:803.805300px;}
.yec{bottom:806.753550px;}
.y22c{bottom:810.625800px;}
.yb8{bottom:815.796300px;}
.y7c{bottom:818.673150px;}
.y44{bottom:818.794800px;}
.y1e7{bottom:818.803800px;}
.yeb{bottom:821.752050px;}
.y22b{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.yb7{bottom:830.794800px;}
.y7b{bottom:833.674650px;}
.y43{bottom:833.794800px;}
.y1e6{bottom:833.802300px;}
.y22a{bottom:836.118300px;}
.yea{bottom:836.750550px;}
.yb6{bottom:845.793300px;}
.y7a{bottom:848.673150px;}
.y1b0{bottom:848.793300px;}
.y42{bottom:848.794800px;}
.y1e5{bottom:848.800800px;}
.y229{bottom:848.864550px;}
.ye9{bottom:851.749050px;}
.y228{bottom:861.610800px;}
.y79{bottom:863.671650px;}
.y41{bottom:863.797800px;}
.y1e4{bottom:863.799300px;}
.ye8{bottom:866.747550px;}
.y5{bottom:871.428300px;}
.y227{bottom:874.357050px;}
.yb5{bottom:878.794800px;}
.y40{bottom:878.796300px;}
.y1e3{bottom:878.797800px;}
.y1af{bottom:878.997300px;}
.ye7{bottom:881.746050px;}
.y226{bottom:887.103300px;}
.y78{bottom:893.741550px;}
.y3f{bottom:893.794800px;}
.y1e2{bottom:893.796300px;}
.yb4{bottom:893.812800px;}
.y1ae{bottom:896.437800px;}
.ye6{bottom:896.749050px;}
.y225{bottom:899.849550px;}
.y77{bottom:908.740050px;}
.y3e{bottom:908.794800px;}
.yb3{bottom:908.811300px;}
.ye5{bottom:911.747550px;}
.y224{bottom:912.595800px;}
.y1ad{bottom:913.878300px;}
.y4{bottom:916.434300px;}
.y76{bottom:923.738550px;}
.y1e1{bottom:923.796300px;}
.y3d{bottom:923.797800px;}
.yb2{bottom:923.809800px;}
.y223{bottom:925.342050px;}
.y30{bottom:926.409600px;}
.ye4{bottom:926.746050px;}
.y1ac{bottom:931.318800px;}
.y222{bottom:938.088300px;}
.y75{bottom:938.737050px;}
.y1e0{bottom:938.794800px;}
.y3c{bottom:938.796300px;}
.yb1{bottom:938.808300px;}
.y269{bottom:940.299300px;}
.ye3{bottom:941.744550px;}
.y1ab{bottom:948.759300px;}
.y221{bottom:950.834550px;}
.y74{bottom:953.735550px;}
.y3b{bottom:953.794800px;}
.y1df{bottom:953.799300px;}
.yb0{bottom:953.806800px;}
.y268{bottom:955.297800px;}
.y220{bottom:963.580800px;}
.y1aa{bottom:966.199800px;}
.y73{bottom:968.734050px;}
.y3a{bottom:968.796300px;}
.y1de{bottom:968.797800px;}
.yaf{bottom:968.805300px;}
.y267{bottom:970.296300px;}
.y21f{bottom:976.327050px;}
.y1a8{bottom:983.629800px;}
.y72{bottom:983.732550px;}
.y39{bottom:983.794800px;}
.y1dd{bottom:983.796300px;}
.yae{bottom:983.803800px;}
.y266{bottom:985.294800px;}
.y21e{bottom:989.073300px;}
.y1a7{bottom:994.875300px;}
.y38{bottom:998.794800px;}
.yad{bottom:998.802300px;}
.y265{bottom:1000.293300px;}
.y21d{bottom:1001.819550px;}
.y1a6{bottom:1006.120800px;}
.y1a9{bottom:1011.759300px;}
.y1dc{bottom:1013.799300px;}
.y37{bottom:1013.800800px;}
.y21c{bottom:1014.565800px;}
.y1a5{bottom:1017.366300px;}
.y264{bottom:1022.047800px;}
.y21b{bottom:1027.312050px;}
.y1a4{bottom:1028.611800px;}
.y1db{bottom:1028.797800px;}
.y36{bottom:1028.799300px;}
.y263{bottom:1037.046300px;}
.y1a3{bottom:1039.857300px;}
.y21a{bottom:1040.058300px;}
.y1da{bottom:1043.796300px;}
.y35{bottom:1043.797800px;}
.y262{bottom:1052.044800px;}
.y219{bottom:1052.804550px;}
.y1a1{bottom:1057.297800px;}
.y1d9{bottom:1058.794800px;}
.y34{bottom:1058.796300px;}
.y218{bottom:1065.550800px;}
.y261{bottom:1073.793300px;}
.y33{bottom:1073.794800px;}
.y1a2{bottom:1074.738300px;}
.y217{bottom:1078.297050px;}
.y32{bottom:1088.793300px;}
.y216{bottom:1091.043300px;}
.y1a0{bottom:1092.168300px;}
.y31{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hd{height:23.842749px;}
.h1f{height:25.131600px;}
.h21{height:29.988000px;}
.h22{height:30.072000px;}
.h26{height:32.220000px;}
.h27{height:32.265000px;}
.h3{height:34.523438px;}
.hf{height:36.681152px;}
.h1e{height:38.556000px;}
.h8{height:38.664000px;}
.h16{height:38.694000px;}
.ha{height:38.718000px;}
.h7{height:38.838867px;}
.he{height:41.158749px;}
.h2{height:43.154297px;}
.h9{height:43.341600px;}
.h25{height:43.419600px;}
.h20{height:43.431600px;}
.h23{height:43.437600px;}
.h1d{height:43.443600px;}
.hc{height:43.449600px;}
.h11{height:43.461600px;}
.h24{height:43.467600px;}
.h13{height:43.473600px;}
.hb{height:43.479600px;}
.h12{height:43.485600px;}
.h4{height:44.233154px;}
.h14{height:47.469727px;}
.h6{height:48.450293px;}
.h1c{height:50.658000px;}
.h19{height:50.700000px;}
.h18{height:50.712000px;}
.h1a{height:50.718000px;}
.h1b{height:50.724000px;}
.h17{height:50.730000px;}
.h15{height:50.736000px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:65.664300px;}
.x8{left:71.136300px;}
.x6{left:78.816300px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.x10{left:238.156800px;}
.x5{left:251.455950px;}
.x13{left:300.348750px;}
.xe{left:308.338800px;}
.x11{left:342.642300px;}
.xd{left:402.649800px;}
.xc{left:409.416150px;}
.xf{left:540.231300px;}
.x3{left:584.586600px;}
.xb{left:816.003600px;}
.x12{left:817.278150px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v5{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v4{vertical-align:-9.621333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.186667pt;}
.v1{vertical-align:18.133333pt;}
.ls66{letter-spacing:-3.024000pt;}
.ls1b{letter-spacing:-1.973333pt;}
.lsab{letter-spacing:-1.160000pt;}
.ls96{letter-spacing:-1.056000pt;}
.lsae{letter-spacing:-1.000000pt;}
.ls9c{letter-spacing:-0.970667pt;}
.ls5c{letter-spacing:-0.912000pt;}
.ls77{letter-spacing:-0.768000pt;}
.lsa9{letter-spacing:-0.720000pt;}
.ls99{letter-spacing:-0.709333pt;}
.ls98{letter-spacing:-0.672000pt;}
.ls69{letter-spacing:-0.624000pt;}
.lsb8{letter-spacing:-0.600000pt;}
.ls48{letter-spacing:-0.576000pt;}
.ls9f{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.432000pt;}
.ls44{letter-spacing:-0.384000pt;}
.ls76{letter-spacing:-0.374400pt;}
.lsb5{letter-spacing:-0.360000pt;}
.ls46{letter-spacing:-0.336000pt;}
.lsb6{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.288000pt;}
.lsb7{letter-spacing:-0.280000pt;}
.ls41{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.226667pt;}
.ls8e{letter-spacing:-0.213333pt;}
.lsba{letter-spacing:-0.200000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls78{letter-spacing:-0.160000pt;}
.ls5f{letter-spacing:-0.156000pt;}
.ls9b{letter-spacing:-0.149333pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls67{letter-spacing:-0.124800pt;}
.lsb4{letter-spacing:-0.120000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls97{letter-spacing:-0.093600pt;}
.ls1d{letter-spacing:-0.090667pt;}
.lsac{letter-spacing:-0.080000pt;}
.ls42{letter-spacing:-0.062400pt;}
.ls5d{letter-spacing:-0.053333pt;}
.ls3a{letter-spacing:-0.048000pt;}
.lsb9{letter-spacing:-0.040000pt;}
.ls3b{letter-spacing:-0.031200pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.003067pt;}
.lsd{letter-spacing:0.004800pt;}
.ls59{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.011733pt;}
.ls6{letter-spacing:0.012267pt;}
.ls36{letter-spacing:0.019200pt;}
.ls3{letter-spacing:0.019733pt;}
.ls4{letter-spacing:0.020267pt;}
.ls35{letter-spacing:0.024000pt;}
.ls2{letter-spacing:0.028800pt;}
.ls25{letter-spacing:0.031200pt;}
.lsaf{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.043200pt;}
.ls26{letter-spacing:0.048000pt;}
.ls82{letter-spacing:0.052800pt;}
.ls80{letter-spacing:0.053333pt;}
.lsa5{letter-spacing:0.062400pt;}
.ls63{letter-spacing:0.067200pt;}
.ls79{letter-spacing:0.072000pt;}
.lsb1{letter-spacing:0.076000pt;}
.lsad{letter-spacing:0.080000pt;}
.ls47{letter-spacing:0.093600pt;}
.lsc{letter-spacing:0.096000pt;}
.ls72{letter-spacing:0.106667pt;}
.ls4f{letter-spacing:0.118933pt;}
.ls38{letter-spacing:0.120000pt;}
.ls3e{letter-spacing:0.124800pt;}
.ls71{letter-spacing:0.129600pt;}
.lsa6{letter-spacing:0.134400pt;}
.lsa4{letter-spacing:0.139200pt;}
.ls21{letter-spacing:0.144000pt;}
.ls54{letter-spacing:0.147200pt;}
.ls9{letter-spacing:0.158400pt;}
.ls7{letter-spacing:0.183467pt;}
.ls9a{letter-spacing:0.186667pt;}
.ls60{letter-spacing:0.187200pt;}
.ls28{letter-spacing:0.192000pt;}
.ls58{letter-spacing:0.211200pt;}
.ls75{letter-spacing:0.213333pt;}
.ls8d{letter-spacing:0.216000pt;}
.ls3f{letter-spacing:0.218400pt;}
.ls83{letter-spacing:0.218667pt;}
.ls33{letter-spacing:0.219733pt;}
.ls7c{letter-spacing:0.230400pt;}
.ls11{letter-spacing:0.237333pt;}
.lsb{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.244800pt;}
.ls84{letter-spacing:0.261333pt;}
.ls27{letter-spacing:0.264000pt;}
.ls64{letter-spacing:0.266667pt;}
.lsa1{letter-spacing:0.268800pt;}
.ls23{letter-spacing:0.272000pt;}
.ls6d{letter-spacing:0.278400pt;}
.ls24{letter-spacing:0.280800pt;}
.lsa{letter-spacing:0.288000pt;}
.ls7b{letter-spacing:0.292800pt;}
.ls37{letter-spacing:0.297600pt;}
.ls85{letter-spacing:0.302400pt;}
.ls22{letter-spacing:0.316800pt;}
.ls65{letter-spacing:0.320000pt;}
.ls86{letter-spacing:0.326400pt;}
.ls93{letter-spacing:0.331200pt;}
.ls29{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.345067pt;}
.ls87{letter-spacing:0.345600pt;}
.lsb3{letter-spacing:0.352000pt;}
.ls56{letter-spacing:0.362667pt;}
.ls8b{letter-spacing:0.369600pt;}
.ls61{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.382800pt;}
.lsf{letter-spacing:0.384000pt;}
.ls7f{letter-spacing:0.393600pt;}
.lsa2{letter-spacing:0.405600pt;}
.ls70{letter-spacing:0.408000pt;}
.ls74{letter-spacing:0.412800pt;}
.ls34{letter-spacing:0.426667pt;}
.lsa0{letter-spacing:0.427200pt;}
.ls12{letter-spacing:0.432000pt;}
.ls4a{letter-spacing:0.436800pt;}
.ls62{letter-spacing:0.441600pt;}
.ls57{letter-spacing:0.465600pt;}
.ls30{letter-spacing:0.480000pt;}
.ls91{letter-spacing:0.489600pt;}
.ls6e{letter-spacing:0.494400pt;}
.ls1f{letter-spacing:0.498667pt;}
.ls6f{letter-spacing:0.504000pt;}
.ls5b{letter-spacing:0.517333pt;}
.ls2a{letter-spacing:0.518400pt;}
.ls6c{letter-spacing:0.519467pt;}
.lsaa{letter-spacing:0.520000pt;}
.ls14{letter-spacing:0.528000pt;}
.ls68{letter-spacing:0.533333pt;}
.ls9d{letter-spacing:0.542400pt;}
.lse{letter-spacing:0.556800pt;}
.lsb2{letter-spacing:0.560000pt;}
.ls55{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.580800pt;}
.ls16{letter-spacing:0.589333pt;}
.ls7d{letter-spacing:0.597333pt;}
.ls7e{letter-spacing:0.614400pt;}
.ls32{letter-spacing:0.619200pt;}
.ls2d{letter-spacing:0.624000pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls90{letter-spacing:0.652800pt;}
.ls5a{letter-spacing:0.662400pt;}
.ls43{letter-spacing:0.672000pt;}
.ls7a{letter-spacing:0.691200pt;}
.ls49{letter-spacing:0.700800pt;}
.ls92{letter-spacing:0.715200pt;}
.ls2e{letter-spacing:0.720000pt;}
.ls88{letter-spacing:0.739200pt;}
.ls45{letter-spacing:0.746667pt;}
.ls2c{letter-spacing:0.752000pt;}
.lsb0{letter-spacing:0.760000pt;}
.ls6b{letter-spacing:0.768000pt;}
.ls8a{letter-spacing:0.772800pt;}
.lsa7{letter-spacing:0.792000pt;}
.lsa3{letter-spacing:0.801600pt;}
.ls4b{letter-spacing:0.816000pt;}
.ls8c{letter-spacing:0.835200pt;}
.ls19{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.864000pt;}
.ls73{letter-spacing:0.868800pt;}
.ls94{letter-spacing:0.902400pt;}
.ls52{letter-spacing:0.912000pt;}
.ls53{letter-spacing:0.926400pt;}
.ls13{letter-spacing:0.940800pt;}
.ls89{letter-spacing:0.945600pt;}
.ls50{letter-spacing:0.950400pt;}
.ls51{letter-spacing:0.960000pt;}
.ls6a{letter-spacing:1.008000pt;}
.ls8f{letter-spacing:1.142400pt;}
.ls2f{letter-spacing:1.148267pt;}
.ls4c{letter-spacing:1.152000pt;}
.ls4e{letter-spacing:1.248000pt;}
.ls4d{letter-spacing:2.042133pt;}
.ls0{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsa8{letter-spacing:4.106667pt;}
.ls95{letter-spacing:5.440000pt;}
.ls9e{letter-spacing:12.624000pt;}
.ls81{letter-spacing:13.104000pt;}
.ws2c{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws75{word-spacing:-12.085333pt;}
.ws6{word-spacing:-12.000000pt;}
.wsa0{word-spacing:-11.424000pt;}
.ws50{word-spacing:-11.280000pt;}
.ws8c{word-spacing:-11.136000pt;}
.ws2e{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.986667pt;}
.wsa3{word-spacing:-10.944000pt;}
.ws2d{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsa1{word-spacing:-10.800000pt;}
.ws86{word-spacing:-10.752000pt;}
.ws28{word-spacing:-10.704000pt;}
.ws72{word-spacing:-10.464000pt;}
.ws9d{word-spacing:-10.416000pt;}
.ws6a{word-spacing:-10.272000pt;}
.ws74{word-spacing:-10.224000pt;}
.wsa5{word-spacing:-10.000000pt;}
.ws5{word-spacing:-9.888000pt;}
.ws9e{word-spacing:-9.360000pt;}
.ws49{word-spacing:-9.168000pt;}
.wsa6{word-spacing:-9.160000pt;}
.ws89{word-spacing:-9.120000pt;}
.ws88{word-spacing:-9.024000pt;}
.ws4{word-spacing:-9.013333pt;}
.wsb5{word-spacing:-9.000000pt;}
.wsa8{word-spacing:-8.976000pt;}
.ws42{word-spacing:-8.928000pt;}
.ws15{word-spacing:-8.880000pt;}
.wsb4{word-spacing:-8.840000pt;}
.ws84{word-spacing:-8.784000pt;}
.ws4b{word-spacing:-8.736000pt;}
.ws95{word-spacing:-8.688000pt;}
.ws8f{word-spacing:-8.661333pt;}
.ws4a{word-spacing:-8.640000pt;}
.ws85{word-spacing:-8.592000pt;}
.ws4e{word-spacing:-8.544000pt;}
.ws6e{word-spacing:-8.496000pt;}
.ws90{word-spacing:-8.474667pt;}
.ws4d{word-spacing:-8.448000pt;}
.ws8a{word-spacing:-8.400000pt;}
.ws5a{word-spacing:-8.352000pt;}
.ws4c{word-spacing:-8.304000pt;}
.ws8b{word-spacing:-8.256000pt;}
.wsaa{word-spacing:-8.160000pt;}
.ws8e{word-spacing:-8.101333pt;}
.ws5c{word-spacing:-8.016000pt;}
.wsa4{word-spacing:-8.000000pt;}
.ws68{word-spacing:-7.872000pt;}
.ws4f{word-spacing:-7.519200pt;}
.ws9f{word-spacing:-7.488000pt;}
.ws26{word-spacing:-7.363200pt;}
.ws2a{word-spacing:-7.300800pt;}
.ws52{word-spacing:-7.269600pt;}
.ws29{word-spacing:-7.207200pt;}
.ws2f{word-spacing:-7.176000pt;}
.wsa2{word-spacing:-7.144800pt;}
.wsb1{word-spacing:-7.120000pt;}
.ws27{word-spacing:-7.113600pt;}
.ws24{word-spacing:-7.082400pt;}
.ws25{word-spacing:-7.051200pt;}
.ws2b{word-spacing:-7.020000pt;}
.ws8d{word-spacing:-6.988800pt;}
.ws69{word-spacing:-6.957600pt;}
.ws51{word-spacing:-6.926400pt;}
.ws73{word-spacing:-6.708000pt;}
.ws7{word-spacing:-5.893333pt;}
.ws94{word-spacing:-5.440000pt;}
.ws5e{word-spacing:-4.896000pt;}
.ws9c{word-spacing:-4.416000pt;}
.wsa7{word-spacing:-4.106667pt;}
.wsc2{word-spacing:-3.520000pt;}
.ws97{word-spacing:-3.434667pt;}
.wsb{word-spacing:-3.413333pt;}
.wsa{word-spacing:-3.200000pt;}
.ws10{word-spacing:-3.072000pt;}
.ws9{word-spacing:-2.912000pt;}
.ws23{word-spacing:-2.453333pt;}
.wsd{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.wse{word-spacing:-2.133333pt;}
.ws48{word-spacing:-1.824000pt;}
.ws3a{word-spacing:-1.813333pt;}
.wsc0{word-spacing:-1.776000pt;}
.ws79{word-spacing:-1.728000pt;}
.ws56{word-spacing:-1.680000pt;}
.ws57{word-spacing:-1.653333pt;}
.ws13{word-spacing:-1.632000pt;}
.ws18{word-spacing:-1.584000pt;}
.ws55{word-spacing:-1.536000pt;}
.ws1a{word-spacing:-1.488000pt;}
.ws11{word-spacing:-1.440000pt;}
.wsb6{word-spacing:-1.400000pt;}
.ws54{word-spacing:-1.392000pt;}
.ws1e{word-spacing:-1.360000pt;}
.ws61{word-spacing:-1.344000pt;}
.wsaf{word-spacing:-1.320000pt;}
.ws71{word-spacing:-1.248000pt;}
.ws39{word-spacing:-1.232000pt;}
.ws6c{word-spacing:-1.200000pt;}
.ws64{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.120000pt;}
.ws30{word-spacing:-1.104000pt;}
.ws82{word-spacing:-1.056000pt;}
.wsf{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.960000pt;}
.wsac{word-spacing:-0.920000pt;}
.ws34{word-spacing:-0.912000pt;}
.ws46{word-spacing:-0.864000pt;}
.ws99{word-spacing:-0.858667pt;}
.ws96{word-spacing:-0.821333pt;}
.ws80{word-spacing:-0.816000pt;}
.ws7e{word-spacing:-0.768000pt;}
.wsad{word-spacing:-0.760000pt;}
.ws47{word-spacing:-0.746667pt;}
.ws63{word-spacing:-0.720000pt;}
.ws45{word-spacing:-0.672000pt;}
.ws3b{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.624000pt;}
.ws21{word-spacing:-0.589333pt;}
.ws78{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.576000pt;}
.wsae{word-spacing:-0.560000pt;}
.ws70{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.528000pt;}
.wsbc{word-spacing:-0.520000pt;}
.ws22{word-spacing:-0.498667pt;}
.ws14{word-spacing:-0.480000pt;}
.wsb7{word-spacing:-0.440000pt;}
.ws3d{word-spacing:-0.432000pt;}
.ws65{word-spacing:-0.426667pt;}
.ws12{word-spacing:-0.384000pt;}
.ws5f{word-spacing:-0.373333pt;}
.wsbf{word-spacing:-0.360000pt;}
.ws60{word-spacing:-0.336000pt;}
.wsb2{word-spacing:-0.320000pt;}
.ws6f{word-spacing:-0.288000pt;}
.wsbd{word-spacing:-0.280000pt;}
.ws83{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.240000pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.144000pt;}
.wsbe{word-spacing:-0.120000pt;}
.ws7d{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.096000pt;}
.wsa9{word-spacing:-0.062400pt;}
.ws66{word-spacing:-0.053333pt;}
.ws31{word-spacing:-0.048000pt;}
.wsb8{word-spacing:-0.040000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.048000pt;}
.ws76{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.080000pt;}
.ws1f{word-spacing:0.090667pt;}
.ws32{word-spacing:0.096000pt;}
.ws9b{word-spacing:0.112000pt;}
.ws3e{word-spacing:0.144000pt;}
.ws9a{word-spacing:0.149333pt;}
.ws1d{word-spacing:0.192000pt;}
.ws87{word-spacing:0.213333pt;}
.ws20{word-spacing:0.226667pt;}
.ws3f{word-spacing:0.240000pt;}
.wsb9{word-spacing:0.280000pt;}
.ws37{word-spacing:0.288000pt;}
.ws41{word-spacing:0.336000pt;}
.wsab{word-spacing:0.360000pt;}
.ws7f{word-spacing:0.384000pt;}
.ws6b{word-spacing:0.432000pt;}
.ws3c{word-spacing:0.480000pt;}
.ws43{word-spacing:0.528000pt;}
.wsc1{word-spacing:0.576000pt;}
.ws33{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.672000pt;}
.ws98{word-spacing:0.709333pt;}
.ws36{word-spacing:0.720000pt;}
.ws7c{word-spacing:0.768000pt;}
.ws7a{word-spacing:0.816000pt;}
.ws81{word-spacing:0.864000pt;}
.ws35{word-spacing:0.912000pt;}
.wsbb{word-spacing:0.920000pt;}
.wsba{word-spacing:0.960000pt;}
.wsb3{word-spacing:1.000000pt;}
.ws58{word-spacing:1.008000pt;}
.ws7b{word-spacing:1.056000pt;}
.ws5b{word-spacing:1.104000pt;}
.ws40{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.200000pt;}
.ws77{word-spacing:1.296000pt;}
.ws67{word-spacing:1.728000pt;}
.ws59{word-spacing:1.776000pt;}
.ws93{word-spacing:55.141333pt;}
.ws92{word-spacing:64.101333pt;}
.ws91{word-spacing:113.866667pt;}
._c{margin-left:-9.737067pt;}
._1{margin-left:-8.763733pt;}
._2{margin-left:-7.515733pt;}
._12{margin-left:-6.509867pt;}
._7{margin-left:-5.380800pt;}
._5{margin-left:-4.180800pt;}
._3{margin-left:-3.064533pt;}
._0{margin-left:-1.578667pt;}
._6{width:0.897600pt;}
._4{width:1.936533pt;}
._e{width:3.884267pt;}
._11{width:5.184000pt;}
._24{width:6.081600pt;}
._9{width:7.225067pt;}
._8{width:8.680000pt;}
._d{width:9.769067pt;}
._10{width:10.678933pt;}
._19{width:29.717333pt;}
._13{width:34.397867pt;}
._f{width:41.569600pt;}
._b{width:42.458667pt;}
._a{width:43.873067pt;}
._15{width:56.112000pt;}
._22{width:72.576000pt;}
._1d{width:81.536000pt;}
._18{width:127.306667pt;}
._21{width:166.954667pt;}
._1c{width:180.880000pt;}
._17{width:189.840000pt;}
._1e{width:191.941333pt;}
._20{width:200.901333pt;}
._23{width:209.928533pt;}
._1a{width:214.184533pt;}
._16{width:265.738667pt;}
._1f{width:270.704000pt;}
._1b{width:283.920000pt;}
._14{width:732.778133pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2c{bottom:60.723467pt;}
.y168{bottom:60.934667pt;}
.yac{bottom:60.938667pt;}
.y11a{bottom:60.944000pt;}
.y19f{bottom:61.782533pt;}
.y13d{bottom:62.489600pt;}
.y71{bottom:63.817600pt;}
.ye2{bottom:63.820267pt;}
.y17d{bottom:64.496267pt;}
.y14e{bottom:65.154933pt;}
.y215{bottom:67.872933pt;}
.y260{bottom:69.818933pt;}
.y2b{bottom:74.051467pt;}
.y167{bottom:74.266667pt;}
.yab{bottom:74.270667pt;}
.y119{bottom:74.276000pt;}
.y19e{bottom:75.114533pt;}
.y13c{bottom:75.821600pt;}
.ye1{bottom:77.152267pt;}
.y70{bottom:77.158933pt;}
.y17c{bottom:77.828267pt;}
.y14d{bottom:78.486933pt;}
.y214{bottom:79.202933pt;}
.y25f{bottom:83.150933pt;}
.y1d1{bottom:83.384000pt;}
.y2a{bottom:87.384800pt;}
.yaa{bottom:87.602667pt;}
.y118{bottom:87.608000pt;}
.y19d{bottom:88.446533pt;}
.y13b{bottom:89.153600pt;}
.ye0{bottom:90.484267pt;}
.y6f{bottom:90.490933pt;}
.y213{bottom:90.532933pt;}
.y17b{bottom:91.160267pt;}
.y14c{bottom:91.818933pt;}
.y25e{bottom:96.482933pt;}
.y1d0{bottom:96.716000pt;}
.y166{bottom:99.057467pt;}
.y29{bottom:100.718133pt;}
.ya9{bottom:100.934667pt;}
.y117{bottom:100.940000pt;}
.y1be{bottom:101.605467pt;}
.y19c{bottom:101.778533pt;}
.y212{bottom:101.862933pt;}
.y13a{bottom:102.485600pt;}
.ydf{bottom:103.818933pt;}
.y6e{bottom:103.822933pt;}
.y17a{bottom:104.492267pt;}
.y14b{bottom:105.150933pt;}
.y25d{bottom:109.816267pt;}
.y1cf{bottom:110.048000pt;}
.y165{bottom:112.389467pt;}
.y211{bottom:113.192933pt;}
.y28{bottom:114.051467pt;}
.ya8{bottom:114.266667pt;}
.y116{bottom:114.272000pt;}
.y1bd{bottom:114.937467pt;}
.y19b{bottom:115.110533pt;}
.y139{bottom:115.817600pt;}
.yde{bottom:117.150933pt;}
.y6d{bottom:117.154933pt;}
.y179{bottom:117.824267pt;}
.y14a{bottom:118.485600pt;}
.y1ce{bottom:123.384000pt;}
.y210{bottom:124.522933pt;}
.y164{bottom:125.721467pt;}
.y115{bottom:127.604000pt;}
.y1bc{bottom:128.269467pt;}
.y19a{bottom:128.442533pt;}
.y138{bottom:129.149600pt;}
.y6c{bottom:130.486933pt;}
.ydd{bottom:130.488267pt;}
.y178{bottom:131.156267pt;}
.y27{bottom:131.232800pt;}
.y149{bottom:131.817600pt;}
.y25c{bottom:133.834933pt;}
.y20f{bottom:135.852933pt;}
.y1cd{bottom:136.716000pt;}
.y163{bottom:139.053467pt;}
.y114{bottom:140.936000pt;}
.ya7{bottom:141.008667pt;}
.y1bb{bottom:141.601467pt;}
.y199{bottom:141.774533pt;}
.y6b{bottom:143.818933pt;}
.ydc{bottom:143.820267pt;}
.y177{bottom:144.488267pt;}
.y148{bottom:145.149600pt;}
.y25b{bottom:147.166933pt;}
.y20e{bottom:147.182933pt;}
.y1cc{bottom:150.048000pt;}
.y162{bottom:152.385467pt;}
.y113{bottom:154.268000pt;}
.ya6{bottom:154.340667pt;}
.y1ba{bottom:154.933467pt;}
.y198{bottom:155.119867pt;}
.y6a{bottom:157.150933pt;}
.ydb{bottom:157.152267pt;}
.y176{bottom:157.820267pt;}
.y137{bottom:158.508267pt;}
.y20d{bottom:158.512933pt;}
.y25a{bottom:160.498933pt;}
.y1cb{bottom:163.392000pt;}
.y161{bottom:165.717467pt;}
.y112{bottom:167.600000pt;}
.ya5{bottom:167.672667pt;}
.y1b9{bottom:168.265467pt;}
.y197{bottom:168.451867pt;}
.y20c{bottom:169.842933pt;}
.yda{bottom:170.484267pt;}
.y69{bottom:170.485600pt;}
.y175{bottom:171.152267pt;}
.y136{bottom:171.840267pt;}
.y259{bottom:173.830933pt;}
.y147{bottom:174.492267pt;}
.y26{bottom:175.278933pt;}
.y1ca{bottom:176.724000pt;}
.y160{bottom:179.049467pt;}
.ya4{bottom:181.004667pt;}
.y20b{bottom:181.172933pt;}
.y1b8{bottom:181.597467pt;}
.y196{bottom:181.783867pt;}
.yd9{bottom:183.816267pt;}
.y68{bottom:183.817600pt;}
.y174{bottom:184.484267pt;}
.y135{bottom:185.172267pt;}
.y258{bottom:187.162933pt;}
.y146{bottom:187.824267pt;}
.y25{bottom:188.610933pt;}
.y1c9{bottom:190.056000pt;}
.y111{bottom:191.657867pt;}
.y15f{bottom:192.381467pt;}
.y20a{bottom:192.502933pt;}
.ya3{bottom:194.336667pt;}
.y1b7{bottom:194.929467pt;}
.y195{bottom:195.115867pt;}
.y67{bottom:197.149600pt;}
.y173{bottom:197.816267pt;}
.y134{bottom:198.504267pt;}
.y257{bottom:200.494933pt;}
.y145{bottom:201.156267pt;}
.y24{bottom:201.942933pt;}
.y1c8{bottom:203.388000pt;}
.y209{bottom:203.832933pt;}
.y110{bottom:204.989867pt;}
.y15e{bottom:205.713467pt;}
.ya2{bottom:207.668667pt;}
.y1b6{bottom:208.261467pt;}
.y194{bottom:208.447867pt;}
.y133{bottom:211.836267pt;}
.yd8{bottom:213.153600pt;}
.y256{bottom:213.826933pt;}
.y144{bottom:214.488267pt;}
.y208{bottom:215.162933pt;}
.y23{bottom:215.284267pt;}
.y1c7{bottom:216.720000pt;}
.y10f{bottom:218.321867pt;}
.y15d{bottom:219.045467pt;}
.ya1{bottom:221.000667pt;}
.y1b5{bottom:221.593467pt;}
.y193{bottom:221.779867pt;}
.y132{bottom:225.168267pt;}
.yd7{bottom:226.485600pt;}
.y207{bottom:226.492933pt;}
.y66{bottom:226.494933pt;}
.y255{bottom:227.158933pt;}
.y143{bottom:227.820267pt;}
.y22{bottom:228.616267pt;}
.y1c6{bottom:230.052000pt;}
.y10e{bottom:231.653867pt;}
.y15c{bottom:232.377467pt;}
.ya0{bottom:234.332667pt;}
.y192{bottom:235.111867pt;}
.y206{bottom:237.822933pt;}
.y131{bottom:238.500267pt;}
.yd6{bottom:239.817600pt;}
.y65{bottom:239.826933pt;}
.y254{bottom:240.490933pt;}
.y180{bottom:240.961733pt;}
.y142{bottom:241.152267pt;}
.y21{bottom:241.948267pt;}
.y1c5{bottom:243.384000pt;}
.y10d{bottom:244.985867pt;}
.y15b{bottom:245.709467pt;}
.y9f{bottom:247.664667pt;}
.y191{bottom:248.443867pt;}
.y205{bottom:249.152933pt;}
.y130{bottom:251.832267pt;}
.yd5{bottom:253.149600pt;}
.y64{bottom:253.158933pt;}
.y253{bottom:253.822933pt;}
.y17f{bottom:254.293733pt;}
.y141{bottom:254.484267pt;}
.y20{bottom:255.280267pt;}
.y1c4{bottom:256.716000pt;}
.y10c{bottom:258.317867pt;}
.y15a{bottom:259.041467pt;}
.y204{bottom:260.482933pt;}
.y9e{bottom:260.996667pt;}
.y190{bottom:261.775867pt;}
.y12f{bottom:265.164267pt;}
.y63{bottom:266.490933pt;}
.y252{bottom:267.154933pt;}
.y17e{bottom:267.625733pt;}
.y140{bottom:267.816267pt;}
.y1f{bottom:268.612267pt;}
.y1c3{bottom:270.048000pt;}
.y10b{bottom:271.649867pt;}
.y203{bottom:271.816267pt;}
.y9d{bottom:274.328667pt;}
.y18f{bottom:275.107867pt;}
.y12e{bottom:278.496267pt;}
.y62{bottom:279.822933pt;}
.y251{bottom:280.486933pt;}
.y1e{bottom:281.944267pt;}
.yd4{bottom:282.488267pt;}
.y1c2{bottom:283.384000pt;}
.y159{bottom:283.820267pt;}
.y10a{bottom:284.981867pt;}
.y9c{bottom:287.660667pt;}
.y18e{bottom:288.442533pt;}
.y12d{bottom:291.828267pt;}
.y61{bottom:293.154933pt;}
.y250{bottom:293.818933pt;}
.y1d{bottom:295.276267pt;}
.yd3{bottom:295.820267pt;}
.y1c1{bottom:296.716000pt;}
.y158{bottom:297.152267pt;}
.y109{bottom:298.313867pt;}
.y9b{bottom:300.992667pt;}
.y202{bottom:301.156267pt;}
.y18d{bottom:301.774533pt;}
.y12c{bottom:305.160267pt;}
.y60{bottom:306.486933pt;}
.y24f{bottom:307.150933pt;}
.y1c{bottom:308.610933pt;}
.yd2{bottom:309.152267pt;}
.y1c0{bottom:310.048000pt;}
.y157{bottom:310.484267pt;}
.y108{bottom:311.645867pt;}
.y155{bottom:313.672533pt;}
.y9a{bottom:314.324667pt;}
.y201{bottom:314.488267pt;}
.y18b{bottom:315.111867pt;}
.y12b{bottom:318.492267pt;}
.y18c{bottom:319.186533pt;}
.y5f{bottom:319.818933pt;}
.y24e{bottom:320.482933pt;}
.y1b{bottom:321.942933pt;}
.yd1{bottom:322.484267pt;}
.y1bf{bottom:323.380000pt;}
.y156{bottom:323.816267pt;}
.y107{bottom:324.977867pt;}
.y154{bottom:327.004533pt;}
.y99{bottom:327.656667pt;}
.y200{bottom:327.820267pt;}
.y18a{bottom:328.443867pt;}
.y12a{bottom:331.824267pt;}
.y5e{bottom:333.150933pt;}
.y24d{bottom:333.816267pt;}
.y1a{bottom:335.308267pt;}
.yd0{bottom:335.826933pt;}
.y106{bottom:338.312533pt;}
.y153{bottom:340.336533pt;}
.y98{bottom:340.988667pt;}
.y1ff{bottom:341.152267pt;}
.y189{bottom:341.775867pt;}
.y129{bottom:345.156267pt;}
.y5d{bottom:346.482933pt;}
.y19{bottom:348.640267pt;}
.ycf{bottom:349.158933pt;}
.y105{bottom:351.644533pt;}
.y152{bottom:353.668533pt;}
.y97{bottom:354.326000pt;}
.y1fe{bottom:354.484267pt;}
.y188{bottom:355.107867pt;}
.y24c{bottom:357.996267pt;}
.y128{bottom:358.488267pt;}
.yce{bottom:362.490933pt;}
.y104{bottom:364.976533pt;}
.y151{bottom:367.000533pt;}
.y96{bottom:367.658000pt;}
.y1fd{bottom:367.818933pt;}
.y187{bottom:368.439867pt;}
.y1d8{bottom:368.664133pt;}
.y24b{bottom:369.326267pt;}
.y172{bottom:370.956400pt;}
.y127{bottom:371.820267pt;}
.y5c{bottom:375.817600pt;}
.ycd{bottom:375.822933pt;}
.y103{bottom:378.309867pt;}
.y150{bottom:380.332533pt;}
.y24a{bottom:380.656267pt;}
.y95{bottom:380.990000pt;}
.y1fc{bottom:381.150933pt;}
.y186{bottom:381.773200pt;}
.y1d7{bottom:381.996133pt;}
.y171{bottom:384.288400pt;}
.y126{bottom:385.152267pt;}
.y5b{bottom:389.154933pt;}
.y18{bottom:390.640267pt;}
.y249{bottom:391.986267pt;}
.y14f{bottom:393.664533pt;}
.y94{bottom:394.322000pt;}
.y1fb{bottom:394.486933pt;}
.y1d6{bottom:395.328133pt;}
.y170{bottom:397.620400pt;}
.y125{bottom:398.484267pt;}
.y102{bottom:402.361200pt;}
.y5a{bottom:402.486933pt;}
.y248{bottom:403.316267pt;}
.y17{bottom:405.304267pt;}
.y93{bottom:407.654000pt;}
.y1fa{bottom:407.818933pt;}
.y1d5{bottom:408.660133pt;}
.y185{bottom:409.981467pt;}
.y16f{bottom:410.952400pt;}
.y124{bottom:411.816267pt;}
.y247{bottom:414.646267pt;}
.y101{bottom:415.693200pt;}
.y59{bottom:415.818933pt;}
.y16{bottom:419.968267pt;}
.y1f9{bottom:421.150933pt;}
.y1d4{bottom:421.992133pt;}
.y184{bottom:423.313467pt;}
.y16e{bottom:424.284400pt;}
.y246{bottom:425.976267pt;}
.y100{bottom:429.025200pt;}
.y58{bottom:429.150933pt;}
.y92{bottom:434.382800pt;}
.y1f8{bottom:434.484267pt;}
.y15{bottom:434.632267pt;}
.y1d3{bottom:435.324133pt;}
.y183{bottom:436.645467pt;}
.y245{bottom:437.306267pt;}
.y16d{bottom:437.616400pt;}
.y123{bottom:441.160267pt;}
.yff{bottom:442.357200pt;}
.ycc{bottom:442.482933pt;}
.y57{bottom:442.484267pt;}
.y91{bottom:447.714800pt;}
.y1f7{bottom:447.817600pt;}
.y244{bottom:448.636267pt;}
.y1d2{bottom:448.656133pt;}
.y14{bottom:449.296267pt;}
.y182{bottom:449.977467pt;}
.y16c{bottom:450.948400pt;}
.y122{bottom:454.492267pt;}
.yfe{bottom:455.689200pt;}
.y56{bottom:455.816267pt;}
.y243{bottom:459.966267pt;}
.y90{bottom:461.046800pt;}
.y1f6{bottom:461.165600pt;}
.y181{bottom:463.309467pt;}
.y13{bottom:463.960267pt;}
.y16b{bottom:464.280400pt;}
.y121{bottom:467.824267pt;}
.yfd{bottom:469.021200pt;}
.y242{bottom:471.296267pt;}
.ycb{bottom:471.844267pt;}
.y8f{bottom:474.378800pt;}
.y1f5{bottom:474.497600pt;}
.y16a{bottom:477.612400pt;}
.y12{bottom:478.624267pt;}
.y120{bottom:481.156267pt;}
.yfc{bottom:482.353200pt;}
.y241{bottom:482.626267pt;}
.y55{bottom:485.150933pt;}
.yca{bottom:485.176267pt;}
.y8e{bottom:487.710800pt;}
.y1f4{bottom:487.829600pt;}
.y169{bottom:490.944400pt;}
.y11{bottom:493.288267pt;}
.y240{bottom:493.956267pt;}
.y11f{bottom:494.488267pt;}
.y54{bottom:498.488267pt;}
.yc9{bottom:498.508267pt;}
.y8d{bottom:501.042800pt;}
.y1f3{bottom:501.161600pt;}
.y23f{bottom:505.286267pt;}
.yfb{bottom:506.405733pt;}
.y11e{bottom:507.820267pt;}
.y10{bottom:507.952267pt;}
.y53{bottom:511.820267pt;}
.yc8{bottom:511.840267pt;}
.y8c{bottom:514.376133pt;}
.y1f2{bottom:514.493600pt;}
.y1b4{bottom:514.841733pt;}
.y23e{bottom:516.616267pt;}
.yfa{bottom:519.737733pt;}
.y11d{bottom:521.152267pt;}
.yf{bottom:522.616267pt;}
.y52{bottom:525.152267pt;}
.yc7{bottom:525.172267pt;}
.y8b{bottom:527.712133pt;}
.y1f1{bottom:527.825600pt;}
.y23d{bottom:527.946267pt;}
.y1b3{bottom:528.173733pt;}
.yf9{bottom:533.069733pt;}
.y11c{bottom:534.484267pt;}
.ye{bottom:537.280267pt;}
.y51{bottom:538.484267pt;}
.yc6{bottom:538.504267pt;}
.y23c{bottom:539.276267pt;}
.y8a{bottom:541.044133pt;}
.y1f0{bottom:541.157600pt;}
.y1b2{bottom:541.505733pt;}
.yf8{bottom:546.401733pt;}
.y11b{bottom:547.816267pt;}
.y23b{bottom:550.606267pt;}
.y50{bottom:551.816267pt;}
.yc5{bottom:551.836267pt;}
.yd{bottom:551.944267pt;}
.y89{bottom:554.376133pt;}
.y1ef{bottom:554.489600pt;}
.y1b1{bottom:554.837733pt;}
.yf7{bottom:559.733733pt;}
.y23a{bottom:561.936267pt;}
.y4f{bottom:565.149600pt;}
.yc4{bottom:565.168267pt;}
.yc{bottom:566.608267pt;}
.y88{bottom:567.710800pt;}
.y1ee{bottom:567.821600pt;}
.yf6{bottom:573.065733pt;}
.y239{bottom:573.266267pt;}
.yc3{bottom:578.500267pt;}
.y87{bottom:581.042800pt;}
.y1ed{bottom:581.153600pt;}
.y238{bottom:584.596267pt;}
.yf5{bottom:586.397733pt;}
.yc2{bottom:591.832267pt;}
.yb{bottom:593.274933pt;}
.y13f{bottom:594.293733pt;}
.y86{bottom:594.376133pt;}
.y4e{bottom:594.484267pt;}
.y1ec{bottom:594.485600pt;}
.y237{bottom:595.926267pt;}
.yf4{bottom:599.733733pt;}
.yc1{bottom:605.164267pt;}
.y236{bottom:607.256267pt;}
.y13e{bottom:607.625733pt;}
.y85{bottom:607.709467pt;}
.y1eb{bottom:607.817600pt;}
.y4d{bottom:607.818933pt;}
.ya{bottom:609.274933pt;}
.yf3{bottom:613.065733pt;}
.yc0{bottom:618.496267pt;}
.y235{bottom:618.586267pt;}
.y84{bottom:621.044133pt;}
.y4c{bottom:621.150933pt;}
.y9{bottom:625.274933pt;}
.yf2{bottom:626.397733pt;}
.y234{bottom:629.916267pt;}
.ybf{bottom:631.828267pt;}
.y83{bottom:634.376133pt;}
.y1ea{bottom:634.484267pt;}
.y4b{bottom:634.486933pt;}
.yf1{bottom:639.732400pt;}
.y233{bottom:641.246267pt;}
.ybe{bottom:645.160267pt;}
.y82{bottom:647.710800pt;}
.y4a{bottom:647.818933pt;}
.y232{bottom:652.576267pt;}
.yf0{bottom:653.064400pt;}
.y8{bottom:654.586933pt;}
.ybd{bottom:658.492267pt;}
.y81{bottom:661.042800pt;}
.y49{bottom:661.150933pt;}
.y231{bottom:663.906267pt;}
.yef{bottom:666.396400pt;}
.ybc{bottom:671.824267pt;}
.y2f{bottom:672.933333pt;}
.y80{bottom:674.377467pt;}
.y48{bottom:674.485600pt;}
.y230{bottom:675.236267pt;}
.ybb{bottom:685.156267pt;}
.y22f{bottom:686.566267pt;}
.y7f{bottom:687.709467pt;}
.y47{bottom:687.817600pt;}
.yee{bottom:690.440933pt;}
.y2e{bottom:691.600000pt;}
.y7{bottom:694.592267pt;}
.y22e{bottom:697.896267pt;}
.yba{bottom:698.488267pt;}
.y7e{bottom:701.045467pt;}
.y46{bottom:701.153600pt;}
.y1e9{bottom:701.161600pt;}
.yed{bottom:703.782267pt;}
.y22d{bottom:709.226267pt;}
.y2d{bottom:710.266667pt;}
.yb9{bottom:711.820267pt;}
.y7d{bottom:714.377467pt;}
.y45{bottom:714.485600pt;}
.y1e8{bottom:714.493600pt;}
.yec{bottom:717.114267pt;}
.y22c{bottom:720.556267pt;}
.yb8{bottom:725.152267pt;}
.y7c{bottom:727.709467pt;}
.y44{bottom:727.817600pt;}
.y1e7{bottom:727.825600pt;}
.yeb{bottom:730.446267pt;}
.y22b{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.yb7{bottom:738.484267pt;}
.y7b{bottom:741.044133pt;}
.y43{bottom:741.150933pt;}
.y1e6{bottom:741.157600pt;}
.y22a{bottom:743.216267pt;}
.yea{bottom:743.778267pt;}
.yb6{bottom:751.816267pt;}
.y7a{bottom:754.376133pt;}
.y1b0{bottom:754.482933pt;}
.y42{bottom:754.484267pt;}
.y1e5{bottom:754.489600pt;}
.y229{bottom:754.546267pt;}
.ye9{bottom:757.110267pt;}
.y228{bottom:765.876267pt;}
.y79{bottom:767.708133pt;}
.y41{bottom:767.820267pt;}
.y1e4{bottom:767.821600pt;}
.ye8{bottom:770.442267pt;}
.y5{bottom:774.602933pt;}
.y227{bottom:777.206267pt;}
.yb5{bottom:781.150933pt;}
.y40{bottom:781.152267pt;}
.y1e3{bottom:781.153600pt;}
.y1af{bottom:781.330933pt;}
.ye7{bottom:783.774267pt;}
.y226{bottom:788.536267pt;}
.y78{bottom:794.436933pt;}
.y3f{bottom:794.484267pt;}
.y1e2{bottom:794.485600pt;}
.yb4{bottom:794.500267pt;}
.y1ae{bottom:796.833600pt;}
.ye6{bottom:797.110267pt;}
.y225{bottom:799.866267pt;}
.y77{bottom:807.768933pt;}
.y3e{bottom:807.817600pt;}
.yb3{bottom:807.832267pt;}
.ye5{bottom:810.442267pt;}
.y224{bottom:811.196267pt;}
.y1ad{bottom:812.336267pt;}
.y4{bottom:814.608267pt;}
.y76{bottom:821.100933pt;}
.y1e1{bottom:821.152267pt;}
.y3d{bottom:821.153600pt;}
.yb2{bottom:821.164267pt;}
.y223{bottom:822.526267pt;}
.y30{bottom:823.475200pt;}
.ye4{bottom:823.774267pt;}
.y1ac{bottom:827.838933pt;}
.y222{bottom:833.856267pt;}
.y75{bottom:834.432933pt;}
.y1e0{bottom:834.484267pt;}
.y3c{bottom:834.485600pt;}
.yb1{bottom:834.496267pt;}
.y269{bottom:835.821600pt;}
.ye3{bottom:837.106267pt;}
.y1ab{bottom:843.341600pt;}
.y221{bottom:845.186267pt;}
.y74{bottom:847.764933pt;}
.y3b{bottom:847.817600pt;}
.y1df{bottom:847.821600pt;}
.yb0{bottom:847.828267pt;}
.y268{bottom:849.153600pt;}
.y220{bottom:856.516267pt;}
.y1aa{bottom:858.844267pt;}
.y73{bottom:861.096933pt;}
.y3a{bottom:861.152267pt;}
.y1de{bottom:861.153600pt;}
.yaf{bottom:861.160267pt;}
.y267{bottom:862.485600pt;}
.y21f{bottom:867.846267pt;}
.y1a8{bottom:874.337600pt;}
.y72{bottom:874.428933pt;}
.y39{bottom:874.484267pt;}
.y1dd{bottom:874.485600pt;}
.yae{bottom:874.492267pt;}
.y266{bottom:875.817600pt;}
.y21e{bottom:879.176267pt;}
.y1a7{bottom:884.333600pt;}
.y38{bottom:887.817600pt;}
.yad{bottom:887.824267pt;}
.y265{bottom:889.149600pt;}
.y21d{bottom:890.506267pt;}
.y1a6{bottom:894.329600pt;}
.y1a9{bottom:899.341600pt;}
.y1dc{bottom:901.154933pt;}
.y37{bottom:901.156267pt;}
.y21c{bottom:901.836267pt;}
.y1a5{bottom:904.325600pt;}
.y264{bottom:908.486933pt;}
.y21b{bottom:913.166267pt;}
.y1a4{bottom:914.321600pt;}
.y1db{bottom:914.486933pt;}
.y36{bottom:914.488267pt;}
.y263{bottom:921.818933pt;}
.y1a3{bottom:924.317600pt;}
.y21a{bottom:924.496267pt;}
.y1da{bottom:927.818933pt;}
.y35{bottom:927.820267pt;}
.y262{bottom:935.150933pt;}
.y219{bottom:935.826267pt;}
.y1a1{bottom:939.820267pt;}
.y1d9{bottom:941.150933pt;}
.y34{bottom:941.152267pt;}
.y218{bottom:947.156267pt;}
.y261{bottom:954.482933pt;}
.y33{bottom:954.484267pt;}
.y1a2{bottom:955.322933pt;}
.y217{bottom:958.486267pt;}
.y32{bottom:967.816267pt;}
.y216{bottom:969.816267pt;}
.y1a0{bottom:970.816267pt;}
.y31{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hd{height:21.193555pt;}
.h1f{height:22.339200pt;}
.h21{height:26.656000pt;}
.h22{height:26.730667pt;}
.h26{height:28.640000pt;}
.h27{height:28.680000pt;}
.h3{height:30.687500pt;}
.hf{height:32.605469pt;}
.h1e{height:34.272000pt;}
.h8{height:34.368000pt;}
.h16{height:34.394667pt;}
.ha{height:34.416000pt;}
.h7{height:34.523438pt;}
.he{height:36.585555pt;}
.h2{height:38.359375pt;}
.h9{height:38.525867pt;}
.h25{height:38.595200pt;}
.h20{height:38.605867pt;}
.h23{height:38.611200pt;}
.h1d{height:38.616533pt;}
.hc{height:38.621867pt;}
.h11{height:38.632533pt;}
.h24{height:38.637867pt;}
.h13{height:38.643200pt;}
.hb{height:38.648533pt;}
.h12{height:38.653867pt;}
.h4{height:39.318359pt;}
.h14{height:42.195312pt;}
.h6{height:43.066927pt;}
.h1c{height:45.029333pt;}
.h19{height:45.066667pt;}
.h18{height:45.077333pt;}
.h1a{height:45.082667pt;}
.h1b{height:45.088000pt;}
.h17{height:45.093333pt;}
.h15{height:45.098667pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:58.368267pt;}
.x8{left:63.232267pt;}
.x6{left:70.058933pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.x10{left:211.694933pt;}
.x5{left:223.516400pt;}
.x13{left:266.976667pt;}
.xe{left:274.078933pt;}
.x11{left:304.570933pt;}
.xd{left:357.910933pt;}
.xc{left:363.925467pt;}
.xf{left:480.205600pt;}
.x3{left:519.632533pt;}
.xb{left:725.336533pt;}
.x12{left:726.469467pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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