
    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_08f639e3bffbb2c8b33ee8a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_371ad9eeb560ba88a1be3e06.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_e66d87ee95d48266905efacd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.741000;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_fadcb43d5070b5b2144f8435.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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_9f0d424fe3a2abceb7b65ded.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151010;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_5278e7407a800cb83ca5959e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.134000;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_b1b2c4c1b3ac9f66932b733d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119000;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_5b5aa5a72322d72bd1125450.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;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_99dbce9f3589d055cbe52654.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.992000;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_660f88acbf3ba304b8b05270.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996000;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_371ad9eeb560ba88a1be3e06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;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_fadcb43d5070b5b2144f8435.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002000;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_08f639e3bffbb2c8b33ee8a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.992000;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_7f6755e0b45007b95121b8fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_371ad9eeb560ba88a1be3e06.woff2')format("woff");}.fff{font-family:fff;line-height:0.992000;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_660f88acbf3ba304b8b05270.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.996000;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_660f88acbf3ba304b8b05270.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.996000;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_85598ca835b4e0422ca12df0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.992000;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_33aac9ddce6df065ca573344.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.996000;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_536988c7fdcbc5cf9a40e30d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.915000;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_f76945a3b3520014a00fb2b4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.903000;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;}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v2{vertical-align:-21.668211px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.688222px;}
.ls0{letter-spacing:-14.445474px;}
.ls75{letter-spacing:-6.369141px;}
.ls8b{letter-spacing:-5.581206px;}
.ls8c{letter-spacing:-4.793271px;}
.ls8e{letter-spacing:-3.677030px;}
.ls15{letter-spacing:-3.611369px;}
.ls88{letter-spacing:-3.414385px;}
.ls80{letter-spacing:-3.348724px;}
.ls77{letter-spacing:-3.217401px;}
.ls78{letter-spacing:-2.954756px;}
.ls83{letter-spacing:-2.823434px;}
.ls17{letter-spacing:-2.757772px;}
.ls14{letter-spacing:-2.626450px;}
.ls8d{letter-spacing:-2.298144px;}
.ls6e{letter-spacing:-2.251243px;}
.ls7f{letter-spacing:-2.232482px;}
.ls7c{letter-spacing:-2.166821px;}
.ls16{letter-spacing:-2.101160px;}
.ls6a{letter-spacing:-2.001105px;}
.ls79{letter-spacing:-1.969837px;}
.ls57{letter-spacing:-1.851022px;}
.ls3d{letter-spacing:-1.838515px;}
.ls3{letter-spacing:-1.650911px;}
.ls13{letter-spacing:-1.641531px;}
.ls6d{letter-spacing:-1.575870px;}
.ls19{letter-spacing:-1.510209px;}
.ls40{letter-spacing:-1.444547px;}
.ls6c{letter-spacing:-1.371007px;}
.ls71{letter-spacing:-1.247564px;}
.ls67{letter-spacing:-1.218673px;}
.ls56{letter-spacing:-1.200663px;}
.ls63{letter-spacing:-1.181902px;}
.ls4f{letter-spacing:-1.116241px;}
.ls69{letter-spacing:-1.104422px;}
.ls55{letter-spacing:-1.066339px;}
.ls7b{letter-spacing:-1.050580px;}
.ls82{letter-spacing:-0.984919px;}
.ls2b{letter-spacing:-0.919257px;}
.ls72{letter-spacing:-0.900497px;}
.ls3c{letter-spacing:-0.853596px;}
.ls2{letter-spacing:-0.825456px;}
.ls12{letter-spacing:-0.787935px;}
.lsf{letter-spacing:-0.750414px;}
.ls22{letter-spacing:-0.731654px;}
.ls3e{letter-spacing:-0.722274px;}
.ls3a{letter-spacing:-0.656612px;}
.ls4{letter-spacing:-0.630348px;}
.ls53{letter-spacing:-0.609336px;}
.ls4c{letter-spacing:-0.590951px;}
.ls52{letter-spacing:-0.525290px;}
.ls1f{letter-spacing:-0.465257px;}
.ls26{letter-spacing:-0.459629px;}
.ls62{letter-spacing:-0.400221px;}
.ls18{letter-spacing:-0.393967px;}
.ls64{letter-spacing:-0.328306px;}
.ls3f{letter-spacing:-0.262645px;}
.lse{letter-spacing:-0.225124px;}
.ls1d{letter-spacing:-0.196984px;}
.ls6b{letter-spacing:-0.150083px;}
.ls42{letter-spacing:-0.131322px;}
.ls7e{letter-spacing:-0.065661px;}
.ls60{letter-spacing:-0.038084px;}
.ls1{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000625px;}
.ls45{letter-spacing:0.017510px;}
.ls49{letter-spacing:0.050028px;}
.ls3b{letter-spacing:0.065661px;}
.ls5b{letter-spacing:0.112562px;}
.ls38{letter-spacing:0.131322px;}
.ls20{letter-spacing:0.150083px;}
.ls68{letter-spacing:0.152334px;}
.ls1b{letter-spacing:0.168843px;}
.ls1c{letter-spacing:0.196984px;}
.ls21{letter-spacing:0.200110px;}
.ls31{letter-spacing:0.225124px;}
.ls37{letter-spacing:0.262645px;}
.ls74{letter-spacing:0.297039px;}
.ls27{letter-spacing:0.328306px;}
.ls29{letter-spacing:0.393967px;}
.ls7a{letter-spacing:0.459629px;}
.ls44{letter-spacing:0.513784px;}
.ls46{letter-spacing:0.525290px;}
.ls24{letter-spacing:0.590951px;}
.ls61{letter-spacing:0.594078px;}
.ls5e{letter-spacing:0.600331px;}
.ls5f{letter-spacing:0.656612px;}
.ls5c{letter-spacing:0.685503px;}
.lsa{letter-spacing:0.722274px;}
.ls6{letter-spacing:0.787935px;}
.ls65{letter-spacing:0.831709px;}
.lsc{letter-spacing:0.853596px;}
.ls2a{letter-spacing:0.919257px;}
.ls1e{letter-spacing:0.945522px;}
.ls47{letter-spacing:0.984919px;}
.ls1a{letter-spacing:1.013059px;}
.ls58{letter-spacing:1.050580px;}
.ls2f{letter-spacing:1.069340px;}
.ls76{letter-spacing:1.116241px;}
.ls4b{letter-spacing:1.181902px;}
.ls43{letter-spacing:1.200663px;}
.ls36{letter-spacing:1.247564px;}
.ls4a{letter-spacing:1.300718px;}
.ls39{letter-spacing:1.313225px;}
.ls66{letter-spacing:1.366379px;}
.ls5a{letter-spacing:1.378886px;}
.ls4d{letter-spacing:1.389892px;}
.ls8a{letter-spacing:1.444547px;}
.ls35{letter-spacing:1.500828px;}
.ls87{letter-spacing:1.510209px;}
.ls11{letter-spacing:1.523341px;}
.ls50{letter-spacing:1.575870px;}
.ls32{letter-spacing:1.641531px;}
.ls85{letter-spacing:1.772854px;}
.ls23{letter-spacing:1.838515px;}
.ls34{letter-spacing:1.851022px;}
.ls5d{letter-spacing:1.904176px;}
.ls10{letter-spacing:1.969837px;}
.ls70{letter-spacing:2.019865px;}
.ls30{letter-spacing:2.026118px;}
.ls48{letter-spacing:2.035499px;}
.ls41{letter-spacing:2.101160px;}
.ls6f{letter-spacing:2.138681px;}
.ls28{letter-spacing:2.232482px;}
.ls2d{letter-spacing:2.363805px;}
.ls25{letter-spacing:2.429466px;}
.ls81{letter-spacing:2.495127px;}
.ls86{letter-spacing:2.560789px;}
.ls7d{letter-spacing:2.626450px;}
.ls2e{letter-spacing:2.757772px;}
.ls54{letter-spacing:2.889095px;}
.ls84{letter-spacing:3.151740px;}
.ls51{letter-spacing:3.348724px;}
.ls2c{letter-spacing:6.978852px;}
.ls59{letter-spacing:7.616705px;}
.ls73{letter-spacing:7.945011px;}
.ls89{letter-spacing:8.273317px;}
.ls33{letter-spacing:9.061252px;}
.ls9{letter-spacing:358.614210px;}
.lsd{letter-spacing:634.353298px;}
.ls7{letter-spacing:860.096661px;}
.ls8{letter-spacing:1240.851219px;}
.ls5{letter-spacing:1912.191183px;}
.lsb{letter-spacing:1941.927598px;}
.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;}
}
.ws0{word-spacing:-107.246702px;}
.ws10{word-spacing:-83.446063px;}
.ws2{word-spacing:-38.246112px;}
.ws1{word-spacing:-37.420657px;}
.ws4a{word-spacing:-20.880276px;}
.ws52{word-spacing:-20.814615px;}
.ws19{word-spacing:-20.683292px;}
.ws1b{word-spacing:-20.486309px;}
.ws2f{word-spacing:-20.158003px;}
.ws17{word-spacing:-20.092341px;}
.ws51{word-spacing:-20.026680px;}
.ws25{word-spacing:-19.829696px;}
.ws3a{word-spacing:-19.567051px;}
.ws47{word-spacing:-19.501390px;}
.ws38{word-spacing:-19.238745px;}
.ws2b{word-spacing:-19.173084px;}
.wsb{word-spacing:-19.107423px;}
.ws7{word-spacing:-19.041761px;}
.wsa{word-spacing:-18.976100px;}
.ws32{word-spacing:-18.910439px;}
.ws18{word-spacing:-18.844778px;}
.ws4f{word-spacing:-18.713455px;}
.ws1a{word-spacing:-18.582133px;}
.ws4b{word-spacing:-18.516471px;}
.ws12{word-spacing:-18.450810px;}
.ws1f{word-spacing:-18.385149px;}
.ws2d{word-spacing:-18.319488px;}
.ws31{word-spacing:-18.253826px;}
.ws4c{word-spacing:-18.188165px;}
.ws54{word-spacing:-18.122504px;}
.ws46{word-spacing:-18.056843px;}
.ws20{word-spacing:-17.991181px;}
.wse{word-spacing:-17.859859px;}
.ws44{word-spacing:-17.794198px;}
.ws26{word-spacing:-17.728536px;}
.ws2c{word-spacing:-17.662875px;}
.ws45{word-spacing:-17.531553px;}
.ws40{word-spacing:-17.465891px;}
.ws43{word-spacing:-17.400230px;}
.ws22{word-spacing:-17.334569px;}
.ws48{word-spacing:-17.203246px;}
.ws35{word-spacing:-17.071924px;}
.ws4e{word-spacing:-16.809279px;}
.wsf{word-spacing:-16.743618px;}
.ws11{word-spacing:-16.659196px;}
.ws8{word-spacing:-16.612295px;}
.ws50{word-spacing:-16.415312px;}
.ws42{word-spacing:-16.283989px;}
.wsc{word-spacing:-16.152667px;}
.ws49{word-spacing:-16.087005px;}
.ws1d{word-spacing:-15.758699px;}
.ws15{word-spacing:-15.702418px;}
.ws13{word-spacing:-15.646137px;}
.ws9{word-spacing:-15.627377px;}
.wsd{word-spacing:-15.496054px;}
.ws1e{word-spacing:-15.408506px;}
.ws41{word-spacing:-15.299070px;}
.ws24{word-spacing:-15.208395px;}
.ws21{word-spacing:-15.108340px;}
.ws16{word-spacing:-14.914483px;}
.ws4d{word-spacing:-14.905103px;}
.ws3f{word-spacing:-14.745640px;}
.ws30{word-spacing:-14.508009px;}
.ws23{word-spacing:-13.957705px;}
.ws3c{word-spacing:-13.757594px;}
.ws34{word-spacing:-13.507456px;}
.ws14{word-spacing:-13.462431px;}
.ws53{word-spacing:-13.460555px;}
.ws29{word-spacing:-12.707014px;}
.ws2a{word-spacing:-12.056655px;}
.ws3b{word-spacing:-11.906573px;}
.ws3e{word-spacing:-11.656435px;}
.ws2e{word-spacing:-11.272723px;}
.ws37{word-spacing:-10.739553px;}
.ws1c{word-spacing:-10.587219px;}
.ws33{word-spacing:-10.549136px;}
.ws27{word-spacing:-9.977883px;}
.ws28{word-spacing:-9.520881px;}
.ws39{word-spacing:-9.482797px;}
.ws36{word-spacing:-9.368547px;}
.ws3d{word-spacing:-9.216212px;}
.ws6{word-spacing:-1.575870px;}
.ws3{word-spacing:-0.045963px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:0.551554px;}
._7{margin-left:-32.517950px;}
._8{margin-left:-28.515741px;}
._1e{margin-left:-18.191292px;}
._17{margin-left:-15.008285px;}
._f{margin-left:-12.194231px;}
._24{margin-left:-10.778450px;}
._e{margin-left:-8.942436px;}
._5{margin-left:-7.504142px;}
._9{margin-left:-6.253452px;}
._10{margin-left:-4.311130px;}
._6{margin-left:-3.001657px;}
._b{margin-left:-1.163142px;}
._c{width:1.238183px;}
._11{width:2.238736px;}
._d{width:3.301823px;}
._4{width:4.502485px;}
._a{width:5.753176px;}
._1b{width:6.847530px;}
._19{width:8.623510px;}
._1a{width:9.667837px;}
._2{width:10.943541px;}
._1d{width:12.269273px;}
._3{width:14.169697px;}
._0{width:16.196441px;}
._1{width:18.385149px;}
._1f{width:20.256182px;}
._20{width:21.574409px;}
._21{width:22.587469px;}
._22{width:28.659571px;}
._18{width:39.271053px;}
._23{width:45.221838px;}
._1c{width:303.427497px;}
._13{width:797.700343px;}
._16{width:1253.668919px;}
._15{width:1297.644444px;}
._12{width:1676.650536px;}
._14{width:1854.138512px;}
.fc1{color:rgb(145,143,143);}
.fc0{color:rgb(35,31,32);}
.fs12{font-size:38.083523px;}
.fsf{font-size:45.024854px;}
.fs5{font-size:45.962872px;}
.fse{font-size:46.900890px;}
.fs11{font-size:50.027616px;}
.fs9{font-size:52.528997px;}
.fsd{font-size:56.281068px;}
.fs10{font-size:58.157104px;}
.fs13{font-size:59.407794px;}
.fsa{font-size:62.534520px;}
.fs4{font-size:65.661246px;}
.fs8{font-size:75.041424px;}
.fs7{font-size:78.793495px;}
.fs3{font-size:137.575944px;}
.fs6{font-size:150.082848px;}
.fsc{font-size:187.603560px;}
.fs2{font-size:250.138080px;}
.fsb{font-size:300.165696px;}
.fs0{font-size:437.741640px;}
.fs1{font-size:450.248544px;}
.y0{bottom:0.000000px;}
.y31{bottom:68.595053px;}
.y30{bottom:85.377755px;}
.y49{bottom:85.384634px;}
.y2f{bottom:85.416214px;}
.y2d{bottom:120.811690px;}
.y2c{bottom:140.510064px;}
.y178{bottom:146.129885px;}
.y1b9{bottom:146.187260px;}
.y24e{bottom:146.194764px;}
.yfc{bottom:146.204770px;}
.y19a{bottom:146.214619px;}
.y22c{bottom:146.222123px;}
.y246{bottom:146.224624px;}
.y1d1{bottom:146.229627px;}
.y14b{bottom:146.239633px;}
.y88{bottom:146.242134px;}
.y47{bottom:146.242916px;}
.y87{bottom:161.250419px;}
.y12f{bottom:161.254484px;}
.y177{bottom:166.074488px;}
.y1b8{bottom:166.131864px;}
.y24d{bottom:166.139368px;}
.yfb{bottom:166.149373px;}
.y199{bottom:166.159222px;}
.y22b{bottom:166.166727px;}
.y245{bottom:166.169228px;}
.y1d0{bottom:166.174231px;}
.y14a{bottom:166.184236px;}
.y86{bottom:176.258704px;}
.y46{bottom:177.885383px;}
.y12e{bottom:180.690212px;}
.y176{bottom:186.019092px;}
.y1b7{bottom:186.076467px;}
.y24c{bottom:186.083971px;}
.yfa{bottom:186.093977px;}
.y218{bottom:186.096478px;}
.y198{bottom:186.103826px;}
.y22a{bottom:186.111330px;}
.y244{bottom:186.113831px;}
.y1cf{bottom:186.118834px;}
.yac{bottom:191.266989px;}
.y45{bottom:192.893668px;}
.y2b{bottom:193.002165px;}
.y12d{bottom:195.698497px;}
.y6a{bottom:205.963695px;}
.y1b6{bottom:206.021070px;}
.y24b{bottom:206.028575px;}
.y166{bottom:206.035922px;}
.yf9{bottom:206.038580px;}
.y217{bottom:206.041082px;}
.y197{bottom:206.048429px;}
.y1f0{bottom:206.052181px;}
.y229{bottom:206.055933px;}
.y243{bottom:206.058435px;}
.y1ce{bottom:206.063438px;}
.y149{bottom:206.068440px;}
.yb9{bottom:206.275273px;}
.y114{bottom:206.279338px;}
.y44{bottom:207.901953px;}
.y12c{bottom:210.706782px;}
.y2a{bottom:212.700539px;}
.yb8{bottom:221.283558px;}
.y43{bottom:222.910237px;}
.y113{bottom:225.715067px;}
.y1f5{bottom:225.719288px;}
.y69{bottom:225.908299px;}
.y174{bottom:225.968175px;}
.y24a{bottom:225.973178px;}
.y165{bottom:225.982089px;}
.yf8{bottom:225.983184px;}
.y216{bottom:225.985685px;}
.y1ef{bottom:225.998348px;}
.y228{bottom:226.000537px;}
.y242{bottom:226.003038px;}
.y1cd{bottom:226.008041px;}
.y148{bottom:226.010542px;}
.y29{bottom:232.398913px;}
.yb7{bottom:236.291843px;}
.ydd{bottom:236.295908px;}
.y42{bottom:237.918522px;}
.y112{bottom:240.723352px;}
.y12b{bottom:240.727573px;}
.y1f4{bottom:245.155017px;}
.y175{bottom:245.852902px;}
.y147{bottom:245.857905px;}
.y85{bottom:245.910277px;}
.y173{bottom:245.912779px;}
.y249{bottom:245.917782px;}
.yf7{bottom:245.927787px;}
.y164{bottom:245.928256px;}
.y196{bottom:245.937636px;}
.y1ee{bottom:245.944515px;}
.y227{bottom:245.945140px;}
.y241{bottom:245.947642px;}
.y1cc{bottom:245.952645px;}
.yb6{bottom:251.300128px;}
.ydc{bottom:255.731636px;}
.y12a{bottom:260.163302px;}
.y28{bottom:262.733001px;}
.y68{bottom:265.797505px;}
.y146{bottom:265.802508px;}
.yab{bottom:265.844875px;}
.y84{bottom:265.854881px;}
.y172{bottom:265.857382px;}
.y248{bottom:265.862385px;}
.yf6{bottom:265.872391px;}
.y163{bottom:265.874423px;}
.y215{bottom:265.874892px;}
.y226{bottom:265.889744px;}
.y1ed{bottom:265.890682px;}
.y1fc{bottom:265.892245px;}
.yb5{bottom:266.308413px;}
.ydb{bottom:270.739921px;}
.y129{bottom:275.175651px;}
.y27{bottom:282.431375px;}
.y67{bottom:285.742109px;}
.y145{bottom:285.747112px;}
.yda{bottom:285.748206px;}
.yaa{bottom:285.789479px;}
.y83{bottom:285.799484px;}
.y171{bottom:285.801986px;}
.y1cb{bottom:285.804487px;}
.y247{bottom:285.806989px;}
.y1ae{bottom:285.816994px;}
.y162{bottom:285.820590px;}
.y225{bottom:285.834347px;}
.y1ec{bottom:285.836849px;}
.y128{bottom:294.611380px;}
.yd9{bottom:300.756491px;}
.y26{bottom:302.129749px;}
.y66{bottom:305.686712px;}
.y144{bottom:305.691715px;}
.ya9{bottom:305.734082px;}
.y82{bottom:305.744088px;}
.y170{bottom:305.746589px;}
.y1ca{bottom:305.750654px;}
.y240{bottom:305.751592px;}
.yf5{bottom:305.761598px;}
.y161{bottom:305.766757px;}
.y195{bottom:305.771447px;}
.y1fb{bottom:305.778951px;}
.y127{bottom:309.619665px;}
.yd8{bottom:315.764776px;}
.y126{bottom:324.627950px;}
.y65{bottom:325.631316px;}
.y143{bottom:325.636319px;}
.y1eb{bottom:325.661332px;}
.ya8{bottom:325.678686px;}
.y81{bottom:325.688691px;}
.y16f{bottom:325.691193px;}
.y23f{bottom:325.696195px;}
.y1c9{bottom:325.696821px;}
.yf4{bottom:325.706201px;}
.y214{bottom:325.708702px;}
.y160{bottom:325.712923px;}
.y194{bottom:325.716050px;}
.y224{bottom:325.721053px;}
.yd7{bottom:330.773060px;}
.y25{bottom:332.463994px;}
.y125{bottom:339.636234px;}
.y64{bottom:345.575919px;}
.y142{bottom:345.580922px;}
.y1ea{bottom:345.605936px;}
.ya7{bottom:345.623289px;}
.y80{bottom:345.633295px;}
.y23e{bottom:345.640799px;}
.y1c8{bottom:345.642988px;}
.yf3{bottom:345.650804px;}
.y213{bottom:345.653306px;}
.y15f{bottom:345.659090px;}
.y193{bottom:345.660654px;}
.y1f3{bottom:345.663311px;}
.yd6{bottom:345.781345px;}
.y24{bottom:352.162368px;}
.yd5{bottom:360.789630px;}
.y63{bottom:365.520523px;}
.y141{bottom:365.525526px;}
.y1e9{bottom:365.550539px;}
.ya6{bottom:365.567893px;}
.y7f{bottom:365.577898px;}
.y16e{bottom:365.580400px;}
.y23d{bottom:365.585402px;}
.y1c7{bottom:365.589154px;}
.yf2{bottom:365.595408px;}
.y212{bottom:365.597909px;}
.y15e{bottom:365.605257px;}
.y23{bottom:371.860741px;}
.yd4{bottom:375.797915px;}
.y62{bottom:385.465126px;}
.y1e8{bottom:385.495143px;}
.y111{bottom:385.517499px;}
.y1b5{bottom:385.522502px;}
.y23c{bottom:385.530006px;}
.y1c6{bottom:385.535321px;}
.yf1{bottom:385.540011px;}
.y211{bottom:385.542513px;}
.y192{bottom:385.547516px;}
.yd3{bottom:390.806200px;}
.y22{bottom:402.193579px;}
.y61{bottom:405.409730px;}
.y140{bottom:405.414733px;}
.y191{bottom:405.424738px;}
.y1e7{bottom:405.439746px;}
.ya5{bottom:405.457100px;}
.y110{bottom:405.462102px;}
.y7e{bottom:405.467105px;}
.y1fa{bottom:405.473359px;}
.y23b{bottom:405.474609px;}
.y1c5{bottom:405.481488px;}
.yf0{bottom:405.484615px;}
.y210{bottom:405.487116px;}
.y21{bottom:421.891953px;}
.yb4{bottom:425.354333px;}
.y13f{bottom:425.359336px;}
.y190{bottom:425.369342px;}
.y1e6{bottom:425.384350px;}
.y124{bottom:425.394199px;}
.ya4{bottom:425.401703px;}
.y10f{bottom:425.406706px;}
.y7d{bottom:425.411709px;}
.y16d{bottom:425.414210px;}
.y23a{bottom:425.419213px;}
.y1f9{bottom:425.419526px;}
.y1c4{bottom:425.427655px;}
.yef{bottom:425.429218px;}
.y20f{bottom:425.431720px;}
.y60{bottom:445.298937px;}
.y13e{bottom:445.303940px;}
.y18f{bottom:445.313945px;}
.y1e5{bottom:445.328953px;}
.y123{bottom:445.338802px;}
.ya3{bottom:445.346307px;}
.y10e{bottom:445.351309px;}
.y15d{bottom:445.356312px;}
.y16c{bottom:445.358814px;}
.y239{bottom:445.363816px;}
.y1f8{bottom:445.365692px;}
.yee{bottom:445.373822px;}
.yd{bottom:447.229377px;}
.y20{bottom:452.227449px;}
.yb3{bottom:465.243540px;}
.y13d{bottom:465.248543px;}
.y18e{bottom:465.258548px;}
.y1e4{bottom:465.273557px;}
.yd2{bottom:465.276058px;}
.y122{bottom:465.283406px;}
.ya2{bottom:465.290910px;}
.y10d{bottom:465.295913px;}
.y7c{bottom:465.300916px;}
.y238{bottom:465.308420px;}
.y1f7{bottom:465.311859px;}
.y20e{bottom:465.313423px;}
.yed{bottom:465.315924px;}
.y1f{bottom:471.925823px;}
.yb2{bottom:485.188144px;}
.y13c{bottom:485.193146px;}
.y18d{bottom:485.203152px;}
.y1e3{bottom:485.218160px;}
.yd1{bottom:485.220662px;}
.y121{bottom:485.228009px;}
.y1c3{bottom:485.233169px;}
.ya1{bottom:485.235514px;}
.yec{bottom:485.238015px;}
.y10c{bottom:485.240516px;}
.y7b{bottom:485.245519px;}
.y1ad{bottom:485.245832px;}
.y16b{bottom:485.248020px;}
.y237{bottom:485.253023px;}
.y1f6{bottom:485.258026px;}
.yc{bottom:485.725628px;}
.y1e{bottom:502.259911px;}
.y5f{bottom:505.132747px;}
.y13b{bottom:505.137750px;}
.y18c{bottom:505.147755px;}
.yd0{bottom:505.165265px;}
.y120{bottom:505.172613px;}
.y1c2{bottom:505.177772px;}
.ya0{bottom:505.180117px;}
.yeb{bottom:505.182618px;}
.y10b{bottom:505.185120px;}
.y7a{bottom:505.190123px;}
.y1ac{bottom:505.191999px;}
.y16a{bottom:505.192624px;}
.y236{bottom:505.197627px;}
.y41{bottom:509.958536px;}
.y1d{bottom:521.957034px;}
.y5e{bottom:525.077351px;}
.y13a{bottom:525.082353px;}
.y18b{bottom:525.092359px;}
.y1e2{bottom:525.107367px;}
.y11f{bottom:525.117216px;}
.y1c1{bottom:525.122375px;}
.y9f{bottom:525.124721px;}
.yea{bottom:525.127222px;}
.y10a{bottom:525.129723px;}
.y20d{bottom:525.130036px;}
.y79{bottom:525.134726px;}
.y169{bottom:525.137227px;}
.y1ab{bottom:525.138165px;}
.y223{bottom:525.142230px;}
.yb{bottom:535.740737px;}
.y1c{bottom:541.655408px;}
.yb1{bottom:545.021954px;}
.y139{bottom:545.026957px;}
.y18a{bottom:545.036962px;}
.y1e1{bottom:545.051971px;}
.ycf{bottom:545.054472px;}
.y222{bottom:545.059475px;}
.y11e{bottom:545.061820px;}
.y1c0{bottom:545.066979px;}
.y9e{bottom:545.069324px;}
.ye9{bottom:545.071825px;}
.y109{bottom:545.074327px;}
.y20c{bottom:545.076203px;}
.y78{bottom:545.079330px;}
.y168{bottom:545.081831px;}
.y1aa{bottom:545.084332px;}
.y40{bottom:546.018285px;}
.y3f{bottom:562.902606px;}
.y5d{bottom:564.966558px;}
.y138{bottom:564.971560px;}
.y189{bottom:564.981566px;}
.y1e0{bottom:564.996574px;}
.yce{bottom:564.999076px;}
.y221{bottom:565.004078px;}
.y11d{bottom:565.006423px;}
.y1bf{bottom:565.011582px;}
.y9d{bottom:565.013927px;}
.ye8{bottom:565.016429px;}
.y20b{bottom:565.022370px;}
.y77{bottom:565.023933px;}
.y167{bottom:565.026434px;}
.y1b{bottom:571.989653px;}
.y3e{bottom:582.002681px;}
.y5c{bottom:584.911161px;}
.y188{bottom:584.926169px;}
.y1a9{bottom:584.928671px;}
.y1df{bottom:584.941178px;}
.ycd{bottom:584.943679px;}
.y220{bottom:584.948682px;}
.y11c{bottom:584.951027px;}
.y9c{bottom:584.958531px;}
.ye7{bottom:584.961032px;}
.y76{bottom:584.963534px;}
.y15c{bottom:584.968536px;}
.ya{bottom:585.755846px;}
.y1a{bottom:591.688027px;}
.y5b{bottom:604.855765px;}
.y137{bottom:604.860767px;}
.y1a8{bottom:604.873274px;}
.y1de{bottom:604.885781px;}
.ycc{bottom:604.888282px;}
.y21f{bottom:604.893285px;}
.y11b{bottom:604.895630px;}
.y1be{bottom:604.900789px;}
.y235{bottom:604.903134px;}
.ye6{bottom:604.905636px;}
.y108{bottom:604.908137px;}
.y15b{bottom:604.910639px;}
.y3d{bottom:610.564228px;}
.y19{bottom:611.386401px;}
.y5a{bottom:624.800368px;}
.y136{bottom:624.805371px;}
.y187{bottom:624.815376px;}
.y1a7{bottom:624.817878px;}
.y1dd{bottom:624.830385px;}
.ycb{bottom:624.832886px;}
.y21e{bottom:624.837889px;}
.y11a{bottom:624.840234px;}
.y20a{bottom:624.842735px;}
.y1bd{bottom:624.845393px;}
.y9b{bottom:624.847738px;}
.y75{bottom:624.852741px;}
.y3c{bottom:627.448549px;}
.y9{bottom:635.770955px;}
.y18{bottom:641.721896px;}
.y3b{bottom:644.332869px;}
.y59{bottom:644.744971px;}
.y135{bottom:644.749974px;}
.y186{bottom:644.759980px;}
.y1a6{bottom:644.762481px;}
.yca{bottom:644.777489px;}
.y21d{bottom:644.782492px;}
.y119{bottom:644.784837px;}
.y209{bottom:644.787339px;}
.y1bc{bottom:644.789996px;}
.y9a{bottom:644.792341px;}
.ye5{bottom:644.794843px;}
.y17{bottom:661.420270px;}
.y3a{bottom:663.426690px;}
.y58{bottom:664.689575px;}
.y134{bottom:664.694578px;}
.y99{bottom:664.697079px;}
.y185{bottom:664.704583px;}
.y1a5{bottom:664.707085px;}
.y107{bottom:664.709586px;}
.y1dc{bottom:664.719592px;}
.yc9{bottom:664.722093px;}
.y21c{bottom:664.727096px;}
.y118{bottom:664.729441px;}
.y208{bottom:664.731942px;}
.y15a{bottom:664.734600px;}
.ye4{bottom:664.736945px;}
.ye{bottom:682.896657px;}
.y57{bottom:684.634178px;}
.y133{bottom:684.639181px;}
.y98{bottom:684.641683px;}
.y184{bottom:684.649187px;}
.y1a4{bottom:684.651688px;}
.y106{bottom:684.654189px;}
.yc8{bottom:684.666696px;}
.ye3{bottom:684.669198px;}
.y21b{bottom:684.671699px;}
.y117{bottom:684.674044px;}
.y207{bottom:684.676546px;}
.y159{bottom:684.679203px;}
.y16{bottom:691.752952px;}
.y56{bottom:704.578782px;}
.y132{bottom:704.583785px;}
.y97{bottom:704.586286px;}
.y158{bottom:704.588787px;}
.y183{bottom:704.593790px;}
.y1a3{bottom:704.596292px;}
.y105{bottom:704.598793px;}
.y1db{bottom:704.608798px;}
.yc7{bottom:704.611300px;}
.ye2{bottom:704.613801px;}
.y21a{bottom:704.616303px;}
.y1f2{bottom:704.621149px;}
.y15{bottom:711.451326px;}
.y74{bottom:718.221313px;}
.yb0{bottom:724.523385px;}
.y96{bottom:724.530889px;}
.y157{bottom:724.533391px;}
.y182{bottom:724.538394px;}
.y1f1{bottom:724.540895px;}
.y104{bottom:724.543396px;}
.y1da{bottom:724.553402px;}
.y1bb{bottom:724.555278px;}
.ye1{bottom:724.558405px;}
.y234{bottom:724.559343px;}
.y116{bottom:724.560906px;}
.y206{bottom:724.563251px;}
.y73{bottom:735.105633px;}
.y39{bottom:738.526740px;}
.y14{bottom:741.786821px;}
.y55{bottom:744.467989px;}
.y131{bottom:744.472992px;}
.y95{bottom:744.475493px;}
.y156{bottom:744.477994px;}
.y181{bottom:744.482997px;}
.y1a2{bottom:744.485498px;}
.y103{bottom:744.488000px;}
.y1d9{bottom:744.498005px;}
.yc6{bottom:744.500507px;}
.y1ba{bottom:744.501445px;}
.ye0{bottom:744.503008px;}
.y115{bottom:744.505510px;}
.y72{bottom:751.989954px;}
.y38{bottom:758.848896px;}
.y13{bottom:761.485195px;}
.yaf{bottom:764.412592px;}
.y155{bottom:764.422598px;}
.y180{bottom:764.427601px;}
.y1a1{bottom:764.430102px;}
.y1d8{bottom:764.442609px;}
.yc5{bottom:764.445110px;}
.ydf{bottom:764.447612px;}
.y71{bottom:768.874274px;}
.y205{bottom:784.353131px;}
.yae{bottom:784.357196px;}
.yc4{bottom:784.362199px;}
.y94{bottom:784.364700px;}
.y154{bottom:784.367201px;}
.y17f{bottom:784.372204px;}
.y1a0{bottom:784.374705px;}
.y102{bottom:784.377207px;}
.y233{bottom:784.379708px;}
.y1d7{bottom:784.387212px;}
.yde{bottom:784.389714px;}
.y70{bottom:785.758594px;}
.y12{bottom:790.046743px;}
.y37{bottom:798.491873px;}
.y6f{bottom:802.642915px;}
.y204{bottom:804.299298px;}
.y54{bottom:804.301799px;}
.yc3{bottom:804.306802px;}
.y93{bottom:804.309303px;}
.y153{bottom:804.311805px;}
.y1b4{bottom:804.316808px;}
.y19f{bottom:804.319309px;}
.y101{bottom:804.321810px;}
.y232{bottom:804.324312px;}
.y1d6{bottom:804.331816px;}
.y36{bottom:818.814029px;}
.y6e{bottom:819.527235px;}
.y203{bottom:824.245465px;}
.y53{bottom:824.246403px;}
.yc2{bottom:824.251405px;}
.y92{bottom:824.253907px;}
.y152{bottom:824.256408px;}
.y17e{bottom:824.261411px;}
.y19e{bottom:824.263912px;}
.y100{bottom:824.266414px;}
.y231{bottom:824.268915px;}
.y219{bottom:824.273918px;}
.y6d{bottom:836.411556px;}
.y4{bottom:843.044123px;}
.yad{bottom:844.191006px;}
.y202{bottom:844.191632px;}
.yc1{bottom:844.196009px;}
.y91{bottom:844.198510px;}
.y1d5{bottom:844.199761px;}
.y151{bottom:844.201012px;}
.y17d{bottom:844.206014px;}
.y19d{bottom:844.208516px;}
.yff{bottom:844.211017px;}
.y230{bottom:844.213519px;}
.y6c{bottom:853.295876px;}
.y52{bottom:864.135610px;}
.y201{bottom:864.137798px;}
.yc0{bottom:864.140612px;}
.y90{bottom:864.143114px;}
.y1d4{bottom:864.145928px;}
.y17c{bottom:864.150618px;}
.y19c{bottom:864.153119px;}
.yfe{bottom:864.155621px;}
.y22f{bottom:864.158122px;}
.y35{bottom:878.349706px;}
.y51{bottom:884.080213px;}
.y200{bottom:884.083965px;}
.ybf{bottom:884.085216px;}
.y8f{bottom:884.087717px;}
.y150{bottom:884.090219px;}
.y1d3{bottom:884.092095px;}
.y17b{bottom:884.095221px;}
.yfd{bottom:884.097723px;}
.y22e{bottom:884.100224px;}
.y50{bottom:904.024817px;}
.ybe{bottom:904.029819px;}
.y1ff{bottom:904.030132px;}
.y8e{bottom:904.032321px;}
.y14f{bottom:904.034822px;}
.y1d2{bottom:904.038262px;}
.y1b3{bottom:904.039825px;}
.y19b{bottom:904.042326px;}
.y3{bottom:908.705369px;}
.y4f{bottom:923.969420px;}
.ybd{bottom:923.974423px;}
.y1fe{bottom:923.976299px;}
.y8d{bottom:923.976924px;}
.y14e{bottom:923.979426px;}
.y17a{bottom:923.984428px;}
.y11{bottom:925.499483px;}
.y34{bottom:928.392956px;}
.y22d{bottom:943.906207px;}
.y4e{bottom:943.914024px;}
.ybc{bottom:943.919026px;}
.y8c{bottom:943.921528px;}
.y1fd{bottom:943.922466px;}
.y14d{bottom:943.924029px;}
.y179{bottom:943.926530px;}
.y10{bottom:954.061031px;}
.y1b2{bottom:963.852374px;}
.y4d{bottom:963.858627px;}
.y130{bottom:963.863630px;}
.y14c{bottom:963.868633px;}
.y2{bottom:974.366615px;}
.y33{bottom:978.436205px;}
.yf{bottom:982.622422px;}
.y1b1{bottom:983.798540px;}
.y4c{bottom:983.803230px;}
.ybb{bottom:983.808233px;}
.y8b{bottom:983.810735px;}
.y1b0{bottom:1003.744707px;}
.y4b{bottom:1003.747834px;}
.y8a{bottom:1003.752837px;}
.y1af{bottom:1023.690874px;}
.y89{bottom:1023.692437px;}
.yba{bottom:1023.694939px;}
.y32{bottom:1028.479455px;}
.y8{bottom:1038.342556px;}
.y1{bottom:1043.154587px;}
.y4a{bottom:1043.637041px;}
.y7{bottom:1058.040930px;}
.y2e{bottom:1072.120733px;}
.y6{bottom:1082.171437px;}
.y5{bottom:1106.301320px;}
.y6b{bottom:1126.830778px;}
.y48{bottom:1126.837656px;}
.h11{height:35.832280px;}
.h14{height:38.221099px;}
.h16{height:38.421209px;}
.h20{height:41.050786px;}
.hf{height:42.998736px;}
.h10{height:43.223860px;}
.h13{height:44.432027px;}
.h4{height:50.165192px;}
.h17{height:50.427837px;}
.h22{height:50.537272px;}
.h1d{height:50.764023px;}
.h1f{height:50.773403px;}
.h1c{height:50.774028px;}
.h15{height:50.784034px;}
.h1b{height:50.834061px;}
.h23{height:50.866829px;}
.h1a{height:50.874083px;}
.h1e{height:50.904100px;}
.h18{height:50.923486px;}
.h21{height:50.973513px;}
.h19{height:51.122971px;}
.h9{height:56.656275px;}
.h6{height:57.204078px;}
.h8{height:59.489089px;}
.hd{height:59.494092px;}
.hb{height:59.494717px;}
.ha{height:60.605330px;}
.hc{height:60.610333px;}
.h7{height:69.263234px;}
.h3{height:105.108021px;}
.h5{height:114.663296px;}
.h12{height:143.329120px;}
.h2{height:191.105493px;}
.he{height:277.052937px;}
.h1{height:343.989888px;}
.h0{height:1263.000000px;}
.w1{width:819.841350px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:36.329295px;}
.xc{left:61.436883px;}
.xd{left:68.741696px;}
.xa{left:78.544451px;}
.xf{left:93.063247px;}
.xb{left:98.781717px;}
.x13{left:106.357930px;}
.x14{left:115.221104px;}
.x19{left:128.517506px;}
.x1d{left:137.378960px;}
.x1b{left:146.242134px;}
.x1c{left:168.399991px;}
.x18{left:172.831656px;}
.x15{left:181.688889px;}
.x17{left:183.392173px;}
.x11{left:194.957932px;}
.x1e{left:203.847371px;}
.xe{left:240.413180px;}
.x2{left:249.769439px;}
.x5{left:256.689822px;}
.x12{left:311.815408px;}
.x4{left:317.124432px;}
.x6{left:388.589038px;}
.x7{left:395.760184px;}
.x3{left:428.998689px;}
.x8{left:441.186823px;}
.x9{left:448.357969px;}
.x10{left:681.071743px;}
.x1a{left:703.723622px;}
.x16{left:711.133025px;}
@media print{
.v2{vertical-align:-19.260632pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.278420pt;}
.ls0{letter-spacing:-12.840421pt;}
.ls75{letter-spacing:-5.661459pt;}
.ls8b{letter-spacing:-4.961072pt;}
.ls8c{letter-spacing:-4.260685pt;}
.ls8e{letter-spacing:-3.268471pt;}
.ls15{letter-spacing:-3.210105pt;}
.ls88{letter-spacing:-3.035009pt;}
.ls80{letter-spacing:-2.976643pt;}
.ls77{letter-spacing:-2.859912pt;}
.ls78{letter-spacing:-2.626450pt;}
.ls83{letter-spacing:-2.509719pt;}
.ls17{letter-spacing:-2.451353pt;}
.ls14{letter-spacing:-2.334622pt;}
.ls8d{letter-spacing:-2.042794pt;}
.ls6e{letter-spacing:-2.001105pt;}
.ls7f{letter-spacing:-1.984429pt;}
.ls7c{letter-spacing:-1.926063pt;}
.ls16{letter-spacing:-1.867698pt;}
.ls6a{letter-spacing:-1.778760pt;}
.ls79{letter-spacing:-1.750967pt;}
.ls57{letter-spacing:-1.645353pt;}
.ls3d{letter-spacing:-1.634235pt;}
.ls3{letter-spacing:-1.467477pt;}
.ls13{letter-spacing:-1.459139pt;}
.ls6d{letter-spacing:-1.400773pt;}
.ls19{letter-spacing:-1.342408pt;}
.ls40{letter-spacing:-1.284042pt;}
.ls6c{letter-spacing:-1.218673pt;}
.ls71{letter-spacing:-1.108945pt;}
.ls67{letter-spacing:-1.083265pt;}
.ls56{letter-spacing:-1.067256pt;}
.ls63{letter-spacing:-1.050580pt;}
.ls4f{letter-spacing:-0.992214pt;}
.ls69{letter-spacing:-0.981709pt;}
.ls55{letter-spacing:-0.947857pt;}
.ls7b{letter-spacing:-0.933849pt;}
.ls82{letter-spacing:-0.875483pt;}
.ls2b{letter-spacing:-0.817118pt;}
.ls72{letter-spacing:-0.800442pt;}
.ls3c{letter-spacing:-0.758752pt;}
.ls2{letter-spacing:-0.733738pt;}
.ls12{letter-spacing:-0.700387pt;}
.lsf{letter-spacing:-0.667035pt;}
.ls22{letter-spacing:-0.650359pt;}
.ls3e{letter-spacing:-0.642021pt;}
.ls3a{letter-spacing:-0.583656pt;}
.ls4{letter-spacing:-0.560309pt;}
.ls53{letter-spacing:-0.541632pt;}
.ls4c{letter-spacing:-0.525290pt;}
.ls52{letter-spacing:-0.466924pt;}
.ls1f{letter-spacing:-0.413562pt;}
.ls26{letter-spacing:-0.408559pt;}
.ls62{letter-spacing:-0.355752pt;}
.ls18{letter-spacing:-0.350193pt;}
.ls64{letter-spacing:-0.291828pt;}
.ls3f{letter-spacing:-0.233462pt;}
.lse{letter-spacing:-0.200110pt;}
.ls1d{letter-spacing:-0.175097pt;}
.ls6b{letter-spacing:-0.133407pt;}
.ls42{letter-spacing:-0.116731pt;}
.ls7e{letter-spacing:-0.058366pt;}
.ls60{letter-spacing:-0.033852pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000556pt;}
.ls45{letter-spacing:0.015564pt;}
.ls49{letter-spacing:0.044469pt;}
.ls3b{letter-spacing:0.058366pt;}
.ls5b{letter-spacing:0.100055pt;}
.ls38{letter-spacing:0.116731pt;}
.ls20{letter-spacing:0.133407pt;}
.ls68{letter-spacing:0.135408pt;}
.ls1b{letter-spacing:0.150083pt;}
.ls1c{letter-spacing:0.175097pt;}
.ls21{letter-spacing:0.177876pt;}
.ls31{letter-spacing:0.200110pt;}
.ls37{letter-spacing:0.233462pt;}
.ls74{letter-spacing:0.264035pt;}
.ls27{letter-spacing:0.291828pt;}
.ls29{letter-spacing:0.350193pt;}
.ls7a{letter-spacing:0.408559pt;}
.ls44{letter-spacing:0.456697pt;}
.ls46{letter-spacing:0.466924pt;}
.ls24{letter-spacing:0.525290pt;}
.ls61{letter-spacing:0.528069pt;}
.ls5e{letter-spacing:0.533628pt;}
.ls5f{letter-spacing:0.583656pt;}
.ls5c{letter-spacing:0.609336pt;}
.lsa{letter-spacing:0.642021pt;}
.ls6{letter-spacing:0.700387pt;}
.ls65{letter-spacing:0.739297pt;}
.lsc{letter-spacing:0.758752pt;}
.ls2a{letter-spacing:0.817118pt;}
.ls1e{letter-spacing:0.840464pt;}
.ls47{letter-spacing:0.875483pt;}
.ls1a{letter-spacing:0.900497pt;}
.ls58{letter-spacing:0.933849pt;}
.ls2f{letter-spacing:0.950525pt;}
.ls76{letter-spacing:0.992214pt;}
.ls4b{letter-spacing:1.050580pt;}
.ls43{letter-spacing:1.067256pt;}
.ls36{letter-spacing:1.108945pt;}
.ls4a{letter-spacing:1.156194pt;}
.ls39{letter-spacing:1.167311pt;}
.ls66{letter-spacing:1.214559pt;}
.ls5a{letter-spacing:1.225677pt;}
.ls4d{letter-spacing:1.235460pt;}
.ls8a{letter-spacing:1.284042pt;}
.ls35{letter-spacing:1.334070pt;}
.ls87{letter-spacing:1.342408pt;}
.ls11{letter-spacing:1.354081pt;}
.ls50{letter-spacing:1.400773pt;}
.ls32{letter-spacing:1.459139pt;}
.ls85{letter-spacing:1.575870pt;}
.ls23{letter-spacing:1.634235pt;}
.ls34{letter-spacing:1.645353pt;}
.ls5d{letter-spacing:1.692601pt;}
.ls10{letter-spacing:1.750967pt;}
.ls70{letter-spacing:1.795436pt;}
.ls30{letter-spacing:1.800994pt;}
.ls48{letter-spacing:1.809332pt;}
.ls41{letter-spacing:1.867698pt;}
.ls6f{letter-spacing:1.901049pt;}
.ls28{letter-spacing:1.984429pt;}
.ls2d{letter-spacing:2.101160pt;}
.ls25{letter-spacing:2.159525pt;}
.ls81{letter-spacing:2.217891pt;}
.ls86{letter-spacing:2.276257pt;}
.ls7d{letter-spacing:2.334622pt;}
.ls2e{letter-spacing:2.451353pt;}
.ls54{letter-spacing:2.568084pt;}
.ls84{letter-spacing:2.801546pt;}
.ls51{letter-spacing:2.976643pt;}
.ls2c{letter-spacing:6.203424pt;}
.ls59{letter-spacing:6.770404pt;}
.ls73{letter-spacing:7.062232pt;}
.ls89{letter-spacing:7.354060pt;}
.ls33{letter-spacing:8.054446pt;}
.ls9{letter-spacing:318.768187pt;}
.lsd{letter-spacing:563.869598pt;}
.ls7{letter-spacing:764.530366pt;}
.ls8{letter-spacing:1102.978861pt;}
.ls5{letter-spacing:1699.725496pt;}
.lsb{letter-spacing:1726.157865pt;}
.ws0{word-spacing:-95.330402pt;}
.ws10{word-spacing:-74.174279pt;}
.ws2{word-spacing:-33.996544pt;}
.ws1{word-spacing:-33.262806pt;}
.ws4a{word-spacing:-18.560246pt;}
.ws52{word-spacing:-18.501880pt;}
.ws19{word-spacing:-18.385149pt;}
.ws1b{word-spacing:-18.210052pt;}
.ws2f{word-spacing:-17.918224pt;}
.ws17{word-spacing:-17.859859pt;}
.ws51{word-spacing:-17.801493pt;}
.ws25{word-spacing:-17.626397pt;}
.ws3a{word-spacing:-17.392934pt;}
.ws47{word-spacing:-17.334569pt;}
.ws38{word-spacing:-17.101107pt;}
.ws2b{word-spacing:-17.042741pt;}
.wsb{word-spacing:-16.984376pt;}
.ws7{word-spacing:-16.926010pt;}
.wsa{word-spacing:-16.867645pt;}
.ws32{word-spacing:-16.809279pt;}
.ws18{word-spacing:-16.750913pt;}
.ws4f{word-spacing:-16.634182pt;}
.ws1a{word-spacing:-16.517451pt;}
.ws4b{word-spacing:-16.459086pt;}
.ws12{word-spacing:-16.400720pt;}
.ws1f{word-spacing:-16.342355pt;}
.ws2d{word-spacing:-16.283989pt;}
.ws31{word-spacing:-16.225623pt;}
.ws4c{word-spacing:-16.167258pt;}
.ws54{word-spacing:-16.108892pt;}
.ws46{word-spacing:-16.050527pt;}
.ws20{word-spacing:-15.992161pt;}
.wse{word-spacing:-15.875430pt;}
.ws44{word-spacing:-15.817065pt;}
.ws26{word-spacing:-15.758699pt;}
.ws2c{word-spacing:-15.700333pt;}
.ws45{word-spacing:-15.583602pt;}
.ws40{word-spacing:-15.525237pt;}
.ws43{word-spacing:-15.466871pt;}
.ws22{word-spacing:-15.408506pt;}
.ws48{word-spacing:-15.291775pt;}
.ws35{word-spacing:-15.175044pt;}
.ws4e{word-spacing:-14.941581pt;}
.wsf{word-spacing:-14.883216pt;}
.ws11{word-spacing:-14.808174pt;}
.ws8{word-spacing:-14.766485pt;}
.ws50{word-spacing:-14.591388pt;}
.ws42{word-spacing:-14.474657pt;}
.wsc{word-spacing:-14.357926pt;}
.ws49{word-spacing:-14.299560pt;}
.ws1d{word-spacing:-14.007732pt;}
.ws15{word-spacing:-13.957705pt;}
.ws13{word-spacing:-13.907677pt;}
.ws9{word-spacing:-13.891001pt;}
.wsd{word-spacing:-13.774270pt;}
.ws1e{word-spacing:-13.696450pt;}
.ws41{word-spacing:-13.599174pt;}
.ws24{word-spacing:-13.518574pt;}
.ws21{word-spacing:-13.429636pt;}
.ws16{word-spacing:-13.257318pt;}
.ws4d{word-spacing:-13.248980pt;}
.ws3f{word-spacing:-13.107235pt;}
.ws30{word-spacing:-12.896008pt;}
.ws23{word-spacing:-12.406849pt;}
.ws3c{word-spacing:-12.228973pt;}
.ws34{word-spacing:-12.006628pt;}
.ws14{word-spacing:-11.966606pt;}
.ws53{word-spacing:-11.964938pt;}
.ws29{word-spacing:-11.295124pt;}
.ws2a{word-spacing:-10.717027pt;}
.ws3b{word-spacing:-10.583620pt;}
.ws3e{word-spacing:-10.361275pt;}
.ws2e{word-spacing:-10.020198pt;}
.ws37{word-spacing:-9.546270pt;}
.ws1c{word-spacing:-9.410862pt;}
.ws33{word-spacing:-9.377010pt;}
.ws27{word-spacing:-8.869229pt;}
.ws28{word-spacing:-8.463005pt;}
.ws39{word-spacing:-8.429153pt;}
.ws36{word-spacing:-8.327597pt;}
.ws3d{word-spacing:-8.192189pt;}
.ws6{word-spacing:-1.400773pt;}
.ws3{word-spacing:-0.040856pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:0.490271pt;}
._7{margin-left:-28.904845pt;}
._8{margin-left:-25.347325pt;}
._1e{margin-left:-16.170037pt;}
._17{margin-left:-13.340698pt;}
._f{margin-left:-10.839317pt;}
._24{margin-left:-9.580844pt;}
._e{margin-left:-7.948832pt;}
._5{margin-left:-6.670349pt;}
._9{margin-left:-5.558624pt;}
._10{margin-left:-3.832115pt;}
._6{margin-left:-2.668140pt;}
._b{margin-left:-1.033904pt;}
._c{width:1.100608pt;}
._11{width:1.989987pt;}
._d{width:2.934953pt;}
._4{width:4.002209pt;}
._a{width:5.113934pt;}
._1b{width:6.086693pt;}
._19{width:7.665342pt;}
._1a{width:8.593633pt;}
._2{width:9.727592pt;}
._1d{width:10.906020pt;}
._3{width:12.595286pt;}
._0{width:14.396836pt;}
._1{width:16.342355pt;}
._1f{width:18.005495pt;}
._20{width:19.177253pt;}
._21{width:20.077750pt;}
._22{width:25.475174pt;}
._18{width:34.907603pt;}
._23{width:40.197189pt;}
._1c{width:269.713330pt;}
._13{width:709.066971pt;}
._16{width:1114.372373pt;}
._15{width:1153.461728pt;}
._12{width:1490.356032pt;}
._14{width:1648.123122pt;}
.fs12{font-size:33.852020pt;}
.fsf{font-size:40.022093pt;}
.fs5{font-size:40.855886pt;}
.fse{font-size:41.689680pt;}
.fs11{font-size:44.468992pt;}
.fs9{font-size:46.692442pt;}
.fsd{font-size:50.027616pt;}
.fs10{font-size:51.695203pt;}
.fs13{font-size:52.806928pt;}
.fsa{font-size:55.586240pt;}
.fs4{font-size:58.365552pt;}
.fs8{font-size:66.703488pt;}
.fs7{font-size:70.038662pt;}
.fs3{font-size:122.289728pt;}
.fs6{font-size:133.406976pt;}
.fsc{font-size:166.758720pt;}
.fs2{font-size:222.344960pt;}
.fsb{font-size:266.813952pt;}
.fs0{font-size:389.103680pt;}
.fs1{font-size:400.220928pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:60.973380pt;}
.y30{bottom:75.891338pt;}
.y49{bottom:75.897452pt;}
.y2f{bottom:75.925523pt;}
.y2d{bottom:107.388169pt;}
.y2c{bottom:124.897834pt;}
.y178{bottom:129.893231pt;}
.y1b9{bottom:129.944231pt;}
.y24e{bottom:129.950902pt;}
.yfc{bottom:129.959795pt;}
.y19a{bottom:129.968550pt;}
.y22c{bottom:129.975221pt;}
.y246{bottom:129.977444pt;}
.y1d1{bottom:129.981891pt;}
.y14b{bottom:129.990785pt;}
.y88{bottom:129.993008pt;}
.y47{bottom:129.993703pt;}
.y87{bottom:143.333706pt;}
.y12f{bottom:143.337319pt;}
.y177{bottom:147.621767pt;}
.y1b8{bottom:147.672768pt;}
.y24d{bottom:147.679438pt;}
.yfb{bottom:147.688332pt;}
.y199{bottom:147.697087pt;}
.y22b{bottom:147.703757pt;}
.y245{bottom:147.705980pt;}
.y1d0{bottom:147.710427pt;}
.y14a{bottom:147.719321pt;}
.y86{bottom:156.674403pt;}
.y46{bottom:158.120340pt;}
.y12e{bottom:160.613522pt;}
.y176{bottom:165.350304pt;}
.y1b7{bottom:165.401304pt;}
.y24c{bottom:165.407974pt;}
.yfa{bottom:165.416868pt;}
.y218{bottom:165.419092pt;}
.y198{bottom:165.425623pt;}
.y22a{bottom:165.432293pt;}
.y244{bottom:165.434517pt;}
.y1cf{bottom:165.438964pt;}
.yac{bottom:170.015101pt;}
.y45{bottom:171.461038pt;}
.y2b{bottom:171.557480pt;}
.y12d{bottom:173.954220pt;}
.y6a{bottom:183.078840pt;}
.y1b6{bottom:183.129840pt;}
.y24b{bottom:183.136511pt;}
.y166{bottom:183.143042pt;}
.yf9{bottom:183.145405pt;}
.y217{bottom:183.147628pt;}
.y197{bottom:183.154159pt;}
.y1f0{bottom:183.157495pt;}
.y229{bottom:183.160830pt;}
.y243{bottom:183.163053pt;}
.y1ce{bottom:183.167500pt;}
.y149{bottom:183.171947pt;}
.yb9{bottom:183.355799pt;}
.y114{bottom:183.359412pt;}
.y44{bottom:184.801736pt;}
.y12c{bottom:187.294917pt;}
.y2a{bottom:189.067146pt;}
.yb8{bottom:196.696496pt;}
.y43{bottom:198.142433pt;}
.y113{bottom:200.635615pt;}
.y1f5{bottom:200.639367pt;}
.y69{bottom:200.807376pt;}
.y174{bottom:200.860600pt;}
.y24a{bottom:200.865047pt;}
.y165{bottom:200.872968pt;}
.yf8{bottom:200.873941pt;}
.y216{bottom:200.876164pt;}
.y1ef{bottom:200.887421pt;}
.y228{bottom:200.889366pt;}
.y242{bottom:200.891590pt;}
.y1cd{bottom:200.896037pt;}
.y148{bottom:200.898260pt;}
.y29{bottom:206.576811pt;}
.yb7{bottom:210.037194pt;}
.ydd{bottom:210.040807pt;}
.y42{bottom:211.483131pt;}
.y112{bottom:213.976313pt;}
.y12b{bottom:213.980065pt;}
.y1f4{bottom:217.915570pt;}
.y175{bottom:218.535913pt;}
.y147{bottom:218.540360pt;}
.y85{bottom:218.586913pt;}
.y173{bottom:218.589137pt;}
.y249{bottom:218.593584pt;}
.yf7{bottom:218.602477pt;}
.y164{bottom:218.602894pt;}
.y196{bottom:218.611232pt;}
.y1ee{bottom:218.617347pt;}
.y227{bottom:218.617903pt;}
.y241{bottom:218.620126pt;}
.y1cc{bottom:218.624573pt;}
.yb6{bottom:223.377891pt;}
.ydc{bottom:227.317010pt;}
.y12a{bottom:231.256268pt;}
.y28{bottom:233.540446pt;}
.y68{bottom:236.264449pt;}
.y146{bottom:236.268896pt;}
.yab{bottom:236.306556pt;}
.y84{bottom:236.315450pt;}
.y172{bottom:236.317673pt;}
.y248{bottom:236.322120pt;}
.yf6{bottom:236.331014pt;}
.y163{bottom:236.332820pt;}
.y215{bottom:236.333237pt;}
.y226{bottom:236.346439pt;}
.y1ed{bottom:236.347273pt;}
.y1fc{bottom:236.348662pt;}
.yb5{bottom:236.718589pt;}
.ydb{bottom:240.657708pt;}
.y129{bottom:244.600579pt;}
.y27{bottom:251.050111pt;}
.y67{bottom:253.992986pt;}
.y145{bottom:253.997433pt;}
.yda{bottom:253.998405pt;}
.yaa{bottom:254.035092pt;}
.y83{bottom:254.043986pt;}
.y171{bottom:254.046210pt;}
.y1cb{bottom:254.048433pt;}
.y247{bottom:254.050656pt;}
.y1ae{bottom:254.059550pt;}
.y162{bottom:254.062746pt;}
.y225{bottom:254.074975pt;}
.y1ec{bottom:254.077199pt;}
.y128{bottom:261.876782pt;}
.yd9{bottom:267.339103pt;}
.y26{bottom:268.559777pt;}
.y66{bottom:271.721522pt;}
.y144{bottom:271.725969pt;}
.ya9{bottom:271.763629pt;}
.y82{bottom:271.772523pt;}
.y170{bottom:271.774746pt;}
.y1ca{bottom:271.778359pt;}
.y240{bottom:271.779193pt;}
.yf5{bottom:271.788087pt;}
.y161{bottom:271.792673pt;}
.y195{bottom:271.796842pt;}
.y1fb{bottom:271.803512pt;}
.y127{bottom:275.217480pt;}
.yd8{bottom:280.679801pt;}
.y126{bottom:288.558177pt;}
.y65{bottom:289.450059pt;}
.y143{bottom:289.454505pt;}
.y1eb{bottom:289.476740pt;}
.ya8{bottom:289.492165pt;}
.y81{bottom:289.501059pt;}
.y16f{bottom:289.503282pt;}
.y23f{bottom:289.507729pt;}
.y1c9{bottom:289.508285pt;}
.yf4{bottom:289.516623pt;}
.y214{bottom:289.518847pt;}
.y160{bottom:289.522599pt;}
.y194{bottom:289.525378pt;}
.y224{bottom:289.529825pt;}
.yd7{bottom:294.020498pt;}
.y25{bottom:295.523550pt;}
.y125{bottom:301.898875pt;}
.y64{bottom:307.178595pt;}
.y142{bottom:307.183042pt;}
.y1ea{bottom:307.205276pt;}
.ya7{bottom:307.220702pt;}
.y80{bottom:307.229595pt;}
.y23e{bottom:307.236266pt;}
.y1c8{bottom:307.238211pt;}
.yf3{bottom:307.245160pt;}
.y213{bottom:307.247383pt;}
.y15f{bottom:307.252525pt;}
.y193{bottom:307.253914pt;}
.y1f3{bottom:307.256277pt;}
.yd6{bottom:307.361196pt;}
.y24{bottom:313.033216pt;}
.yd5{bottom:320.701893pt;}
.y63{bottom:324.907131pt;}
.y141{bottom:324.911578pt;}
.y1e9{bottom:324.933813pt;}
.ya6{bottom:324.949238pt;}
.y7f{bottom:324.958132pt;}
.y16e{bottom:324.960355pt;}
.y23d{bottom:324.964802pt;}
.y1c7{bottom:324.968137pt;}
.yf2{bottom:324.973696pt;}
.y212{bottom:324.975919pt;}
.y15e{bottom:324.982451pt;}
.y23{bottom:330.542881pt;}
.yd4{bottom:334.042591pt;}
.y62{bottom:342.635668pt;}
.y1e8{bottom:342.662349pt;}
.y111{bottom:342.682221pt;}
.y1b5{bottom:342.686668pt;}
.y23c{bottom:342.693339pt;}
.y1c6{bottom:342.698063pt;}
.yf1{bottom:342.702232pt;}
.y211{bottom:342.704456pt;}
.y192{bottom:342.708903pt;}
.yd3{bottom:347.383289pt;}
.y22{bottom:357.505404pt;}
.y61{bottom:360.364204pt;}
.y140{bottom:360.368651pt;}
.y191{bottom:360.377545pt;}
.y1e7{bottom:360.390886pt;}
.ya5{bottom:360.406311pt;}
.y110{bottom:360.410758pt;}
.y7e{bottom:360.415205pt;}
.y1fa{bottom:360.420763pt;}
.y23b{bottom:360.421875pt;}
.y1c5{bottom:360.427989pt;}
.yf0{bottom:360.430769pt;}
.y210{bottom:360.432992pt;}
.y21{bottom:375.015070pt;}
.yb4{bottom:378.092741pt;}
.y13f{bottom:378.097188pt;}
.y190{bottom:378.106081pt;}
.y1e6{bottom:378.119422pt;}
.y124{bottom:378.128177pt;}
.ya4{bottom:378.134847pt;}
.y10f{bottom:378.139294pt;}
.y7d{bottom:378.143741pt;}
.y16d{bottom:378.145965pt;}
.y23a{bottom:378.150411pt;}
.y1f9{bottom:378.150689pt;}
.y1c4{bottom:378.157916pt;}
.yef{bottom:378.159305pt;}
.y20f{bottom:378.161529pt;}
.y60{bottom:395.821277pt;}
.y13e{bottom:395.825724pt;}
.y18f{bottom:395.834618pt;}
.y1e5{bottom:395.847958pt;}
.y123{bottom:395.856713pt;}
.ya3{bottom:395.863384pt;}
.y10e{bottom:395.867831pt;}
.y15d{bottom:395.872277pt;}
.y16c{bottom:395.874501pt;}
.y239{bottom:395.878948pt;}
.y1f8{bottom:395.880615pt;}
.yee{bottom:395.887842pt;}
.yd{bottom:397.537224pt;}
.y20{bottom:401.979955pt;}
.yb3{bottom:413.549814pt;}
.y13d{bottom:413.554260pt;}
.y18e{bottom:413.563154pt;}
.y1e4{bottom:413.576495pt;}
.yd2{bottom:413.578718pt;}
.y122{bottom:413.585250pt;}
.ya2{bottom:413.591920pt;}
.y10d{bottom:413.596367pt;}
.y7c{bottom:413.600814pt;}
.y238{bottom:413.607484pt;}
.y1f7{bottom:413.610541pt;}
.y20e{bottom:413.611931pt;}
.yed{bottom:413.614155pt;}
.y1f{bottom:419.489620pt;}
.yb2{bottom:431.278350pt;}
.y13c{bottom:431.282797pt;}
.y18d{bottom:431.291691pt;}
.y1e3{bottom:431.305031pt;}
.yd1{bottom:431.307255pt;}
.y121{bottom:431.313786pt;}
.y1c3{bottom:431.318372pt;}
.ya1{bottom:431.320457pt;}
.yec{bottom:431.322680pt;}
.y10c{bottom:431.324903pt;}
.y7b{bottom:431.329350pt;}
.y1ad{bottom:431.329628pt;}
.y16b{bottom:431.331574pt;}
.y237{bottom:431.336021pt;}
.y1f6{bottom:431.340468pt;}
.yc{bottom:431.756114pt;}
.y1e{bottom:446.453254pt;}
.y5f{bottom:449.006886pt;}
.y13b{bottom:449.011333pt;}
.y18c{bottom:449.020227pt;}
.yd0{bottom:449.035791pt;}
.y120{bottom:449.042323pt;}
.y1c2{bottom:449.046908pt;}
.ya0{bottom:449.048993pt;}
.yeb{bottom:449.051216pt;}
.y10b{bottom:449.053440pt;}
.y7a{bottom:449.057887pt;}
.y1ac{bottom:449.059554pt;}
.y16a{bottom:449.060110pt;}
.y236{bottom:449.064557pt;}
.y41{bottom:453.296477pt;}
.y1d{bottom:463.961808pt;}
.y5e{bottom:466.735423pt;}
.y13a{bottom:466.739870pt;}
.y18b{bottom:466.748763pt;}
.y1e2{bottom:466.762104pt;}
.y11f{bottom:466.770859pt;}
.y1c1{bottom:466.775445pt;}
.y9f{bottom:466.777529pt;}
.yea{bottom:466.779753pt;}
.y10a{bottom:466.781976pt;}
.y20d{bottom:466.782254pt;}
.y79{bottom:466.786423pt;}
.y169{bottom:466.788647pt;}
.y1ab{bottom:466.789480pt;}
.y223{bottom:466.793094pt;}
.yb{bottom:476.213988pt;}
.y1c{bottom:481.471474pt;}
.yb1{bottom:484.463959pt;}
.y139{bottom:484.468406pt;}
.y18a{bottom:484.477300pt;}
.y1e1{bottom:484.490641pt;}
.ycf{bottom:484.492864pt;}
.y222{bottom:484.497311pt;}
.y11e{bottom:484.499395pt;}
.y1c0{bottom:484.503981pt;}
.y9e{bottom:484.506066pt;}
.ye9{bottom:484.508289pt;}
.y109{bottom:484.510513pt;}
.y20c{bottom:484.512180pt;}
.y78{bottom:484.514960pt;}
.y168{bottom:484.517183pt;}
.y1aa{bottom:484.519406pt;}
.y40{bottom:485.349587pt;}
.y3f{bottom:500.357872pt;}
.y5d{bottom:502.192496pt;}
.y138{bottom:502.196943pt;}
.y189{bottom:502.205836pt;}
.y1e0{bottom:502.219177pt;}
.yce{bottom:502.221400pt;}
.y221{bottom:502.225847pt;}
.y11d{bottom:502.227932pt;}
.y1bf{bottom:502.232518pt;}
.y9d{bottom:502.234602pt;}
.ye8{bottom:502.236826pt;}
.y20b{bottom:502.242106pt;}
.y77{bottom:502.243496pt;}
.y167{bottom:502.245719pt;}
.y1b{bottom:508.435247pt;}
.y3e{bottom:517.335716pt;}
.y5c{bottom:519.921032pt;}
.y188{bottom:519.934373pt;}
.y1a9{bottom:519.936596pt;}
.y1df{bottom:519.947713pt;}
.ycd{bottom:519.949937pt;}
.y220{bottom:519.954384pt;}
.y11c{bottom:519.956468pt;}
.y9c{bottom:519.963139pt;}
.ye7{bottom:519.965362pt;}
.y76{bottom:519.967586pt;}
.y15c{bottom:519.972032pt;}
.ya{bottom:520.671863pt;}
.y1a{bottom:525.944913pt;}
.y5b{bottom:537.649568pt;}
.y137{bottom:537.654015pt;}
.y1a8{bottom:537.665133pt;}
.y1de{bottom:537.676250pt;}
.ycc{bottom:537.678473pt;}
.y21f{bottom:537.682920pt;}
.y11b{bottom:537.685005pt;}
.y1be{bottom:537.689591pt;}
.y235{bottom:537.691675pt;}
.ye6{bottom:537.693898pt;}
.y108{bottom:537.696122pt;}
.y15b{bottom:537.698345pt;}
.y3d{bottom:542.723758pt;}
.y19{bottom:543.454578pt;}
.y5a{bottom:555.378105pt;}
.y136{bottom:555.382552pt;}
.y187{bottom:555.391446pt;}
.y1a7{bottom:555.393669pt;}
.y1dd{bottom:555.404786pt;}
.ycb{bottom:555.407010pt;}
.y21e{bottom:555.411457pt;}
.y11a{bottom:555.413541pt;}
.y20a{bottom:555.415765pt;}
.y1bd{bottom:555.418127pt;}
.y9b{bottom:555.420211pt;}
.y75{bottom:555.424658pt;}
.y3c{bottom:557.732043pt;}
.y9{bottom:565.129738pt;}
.y18{bottom:570.419463pt;}
.y3b{bottom:572.740328pt;}
.y59{bottom:573.106641pt;}
.y135{bottom:573.111088pt;}
.y186{bottom:573.119982pt;}
.y1a6{bottom:573.122205pt;}
.yca{bottom:573.135546pt;}
.y21d{bottom:573.139993pt;}
.y119{bottom:573.142078pt;}
.y209{bottom:573.144301pt;}
.y1bc{bottom:573.146663pt;}
.y9a{bottom:573.148748pt;}
.ye5{bottom:573.150971pt;}
.y17{bottom:587.929129pt;}
.y3a{bottom:589.712614pt;}
.y58{bottom:590.835178pt;}
.y134{bottom:590.839625pt;}
.y99{bottom:590.841848pt;}
.y185{bottom:590.848518pt;}
.y1a5{bottom:590.850742pt;}
.y107{bottom:590.852965pt;}
.y1dc{bottom:590.861859pt;}
.yc9{bottom:590.864083pt;}
.y21c{bottom:590.868529pt;}
.y118{bottom:590.870614pt;}
.y208{bottom:590.872837pt;}
.y15a{bottom:590.875200pt;}
.ye4{bottom:590.877284pt;}
.ye{bottom:607.019250pt;}
.y57{bottom:608.563714pt;}
.y133{bottom:608.568161pt;}
.y98{bottom:608.570384pt;}
.y184{bottom:608.577055pt;}
.y1a4{bottom:608.579278pt;}
.y106{bottom:608.581502pt;}
.yc8{bottom:608.592619pt;}
.ye3{bottom:608.594842pt;}
.y21b{bottom:608.597066pt;}
.y117{bottom:608.599150pt;}
.y207{bottom:608.601374pt;}
.y159{bottom:608.603736pt;}
.y16{bottom:614.891513pt;}
.y56{bottom:626.292251pt;}
.y132{bottom:626.296697pt;}
.y97{bottom:626.298921pt;}
.y158{bottom:626.301144pt;}
.y183{bottom:626.305591pt;}
.y1a3{bottom:626.307815pt;}
.y105{bottom:626.310038pt;}
.y1db{bottom:626.318932pt;}
.yc7{bottom:626.321155pt;}
.ye2{bottom:626.323379pt;}
.y21a{bottom:626.325602pt;}
.y1f2{bottom:626.329910pt;}
.y15{bottom:632.401178pt;}
.y74{bottom:638.418945pt;}
.yb0{bottom:644.020787pt;}
.y96{bottom:644.027457pt;}
.y157{bottom:644.029681pt;}
.y182{bottom:644.034128pt;}
.y1f1{bottom:644.036351pt;}
.y104{bottom:644.038575pt;}
.y1da{bottom:644.047468pt;}
.y1bb{bottom:644.049136pt;}
.ye1{bottom:644.051915pt;}
.y234{bottom:644.052749pt;}
.y116{bottom:644.054139pt;}
.y206{bottom:644.056223pt;}
.y73{bottom:653.427229pt;}
.y39{bottom:656.468214pt;}
.y14{bottom:659.366063pt;}
.y55{bottom:661.749323pt;}
.y131{bottom:661.753770pt;}
.y95{bottom:661.755994pt;}
.y156{bottom:661.758217pt;}
.y181{bottom:661.762664pt;}
.y1a2{bottom:661.764888pt;}
.y103{bottom:661.767111pt;}
.y1d9{bottom:661.776005pt;}
.yc6{bottom:661.778228pt;}
.y1ba{bottom:661.779062pt;}
.ye0{bottom:661.780452pt;}
.y115{bottom:661.782675pt;}
.y72{bottom:668.435514pt;}
.y38{bottom:674.532352pt;}
.y13{bottom:676.875729pt;}
.yaf{bottom:679.477860pt;}
.y155{bottom:679.486754pt;}
.y180{bottom:679.491201pt;}
.y1a1{bottom:679.493424pt;}
.y1d8{bottom:679.504541pt;}
.yc5{bottom:679.506765pt;}
.ydf{bottom:679.508988pt;}
.y71{bottom:683.443799pt;}
.y205{bottom:697.202783pt;}
.yae{bottom:697.206396pt;}
.yc4{bottom:697.210843pt;}
.y94{bottom:697.213067pt;}
.y154{bottom:697.215290pt;}
.y17f{bottom:697.219737pt;}
.y1a0{bottom:697.221960pt;}
.y102{bottom:697.224184pt;}
.y233{bottom:697.226407pt;}
.y1d7{bottom:697.233078pt;}
.yde{bottom:697.235301pt;}
.y70{bottom:698.452084pt;}
.y12{bottom:702.263771pt;}
.y37{bottom:709.770554pt;}
.y6f{bottom:713.460369pt;}
.y204{bottom:714.932709pt;}
.y54{bottom:714.934933pt;}
.yc3{bottom:714.939380pt;}
.y93{bottom:714.941603pt;}
.y153{bottom:714.943826pt;}
.y1b4{bottom:714.948273pt;}
.y19f{bottom:714.950497pt;}
.y101{bottom:714.952720pt;}
.y232{bottom:714.954944pt;}
.y1d6{bottom:714.961614pt;}
.y36{bottom:727.834692pt;}
.y6e{bottom:728.468653pt;}
.y203{bottom:732.662635pt;}
.y53{bottom:732.663469pt;}
.yc2{bottom:732.667916pt;}
.y92{bottom:732.670139pt;}
.y152{bottom:732.672363pt;}
.y17e{bottom:732.676810pt;}
.y19e{bottom:732.679033pt;}
.y100{bottom:732.681257pt;}
.y231{bottom:732.683480pt;}
.y219{bottom:732.687927pt;}
.y6d{bottom:743.476938pt;}
.y4{bottom:749.372554pt;}
.yad{bottom:750.392006pt;}
.y202{bottom:750.392561pt;}
.yc1{bottom:750.396452pt;}
.y91{bottom:750.398676pt;}
.y1d5{bottom:750.399788pt;}
.y151{bottom:750.400899pt;}
.y17d{bottom:750.405346pt;}
.y19d{bottom:750.407570pt;}
.yff{bottom:750.409793pt;}
.y230{bottom:750.412017pt;}
.y6c{bottom:758.485223pt;}
.y52{bottom:768.120542pt;}
.y201{bottom:768.122487pt;}
.yc0{bottom:768.124989pt;}
.y90{bottom:768.127212pt;}
.y1d4{bottom:768.129714pt;}
.y17c{bottom:768.133883pt;}
.y19c{bottom:768.136106pt;}
.yfe{bottom:768.138330pt;}
.y22f{bottom:768.140553pt;}
.y35{bottom:780.755294pt;}
.y51{bottom:785.849078pt;}
.y200{bottom:785.852414pt;}
.ybf{bottom:785.853525pt;}
.y8f{bottom:785.855749pt;}
.y150{bottom:785.857972pt;}
.y1d3{bottom:785.859640pt;}
.y17b{bottom:785.862419pt;}
.yfd{bottom:785.864642pt;}
.y22e{bottom:785.866866pt;}
.y50{bottom:803.577615pt;}
.ybe{bottom:803.582062pt;}
.y1ff{bottom:803.582340pt;}
.y8e{bottom:803.584285pt;}
.y14f{bottom:803.586509pt;}
.y1d2{bottom:803.589566pt;}
.y1b3{bottom:803.590955pt;}
.y19b{bottom:803.593179pt;}
.y3{bottom:807.738106pt;}
.y4f{bottom:821.306151pt;}
.ybd{bottom:821.310598pt;}
.y1fe{bottom:821.312266pt;}
.y8d{bottom:821.312822pt;}
.y14e{bottom:821.315045pt;}
.y17a{bottom:821.319492pt;}
.y11{bottom:822.666208pt;}
.y34{bottom:825.238183pt;}
.y22d{bottom:839.027739pt;}
.y4e{bottom:839.034688pt;}
.ybc{bottom:839.039135pt;}
.y8c{bottom:839.041358pt;}
.y1fd{bottom:839.042192pt;}
.y14d{bottom:839.043581pt;}
.y179{bottom:839.045805pt;}
.y10{bottom:848.054250pt;}
.y1b2{bottom:856.757665pt;}
.y4d{bottom:856.763224pt;}
.y130{bottom:856.767671pt;}
.y14c{bottom:856.772118pt;}
.y2{bottom:866.103658pt;}
.y33{bottom:869.721071pt;}
.yf{bottom:873.442153pt;}
.y1b1{bottom:874.487591pt;}
.y4c{bottom:874.491760pt;}
.ybb{bottom:874.496207pt;}
.y8b{bottom:874.498431pt;}
.y1b0{bottom:892.217518pt;}
.y4b{bottom:892.220297pt;}
.y8a{bottom:892.224744pt;}
.y1af{bottom:909.947444pt;}
.y89{bottom:909.948833pt;}
.yba{bottom:909.951057pt;}
.y32{bottom:914.203960pt;}
.y8{bottom:922.971161pt;}
.y1{bottom:927.248522pt;}
.y4a{bottom:927.677370pt;}
.y7{bottom:940.480826pt;}
.y2e{bottom:952.996207pt;}
.y6{bottom:961.930167pt;}
.y5{bottom:983.378951pt;}
.y6b{bottom:1001.627358pt;}
.y48{bottom:1001.633472pt;}
.h11{height:31.850916pt;}
.h14{height:33.974310pt;}
.h16{height:34.152186pt;}
.h20{height:36.489587pt;}
.hf{height:38.221099pt;}
.h10{height:38.421209pt;}
.h13{height:39.495135pt;}
.h4{height:44.591282pt;}
.h17{height:44.824744pt;}
.h22{height:44.922020pt;}
.h1d{height:45.123576pt;}
.h1f{height:45.131913pt;}
.h1c{height:45.132469pt;}
.h15{height:45.141363pt;}
.h1b{height:45.185832pt;}
.h23{height:45.214959pt;}
.h1a{height:45.221407pt;}
.h1e{height:45.248089pt;}
.h18{height:45.265320pt;}
.h21{height:45.309789pt;}
.h19{height:45.442641pt;}
.h9{height:50.361133pt;}
.h6{height:50.848069pt;}
.h8{height:52.879190pt;}
.hd{height:52.883637pt;}
.hb{height:52.884193pt;}
.ha{height:53.871404pt;}
.hc{height:53.875851pt;}
.h7{height:61.567319pt;}
.h3{height:93.429352pt;}
.h5{height:101.922930pt;}
.h12{height:127.403662pt;}
.h2{height:169.871549pt;}
.he{height:246.269278pt;}
.h1{height:305.768789pt;}
.h0{height:1122.666667pt;}
.w1{width:728.747867pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:32.292707pt;}
.xc{left:54.610563pt;}
.xd{left:61.103730pt;}
.xa{left:69.817290pt;}
.xf{left:82.722887pt;}
.xb{left:87.805970pt;}
.x13{left:94.540382pt;}
.x14{left:102.418759pt;}
.x19{left:114.237783pt;}
.x1d{left:122.114631pt;}
.x1b{left:129.993008pt;}
.x1c{left:149.688881pt;}
.x18{left:153.628138pt;}
.x15{left:161.501234pt;}
.x17{left:163.015265pt;}
.x11{left:173.295940pt;}
.x1e{left:181.197663pt;}
.xe{left:213.700605pt;}
.x2{left:222.017279pt;}
.x5{left:228.168730pt;}
.x12{left:277.169252pt;}
.x4{left:281.888384pt;}
.x6{left:345.412478pt;}
.x7{left:351.786831pt;}
.x3{left:381.332168pt;}
.x8{left:392.166065pt;}
.x9{left:398.540417pt;}
.x10{left:605.397105pt;}
.x1a{left:625.532109pt;}
.x16{left:632.118244pt;}
}




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