
    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_c162c7494094c2422ab4aa05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.209000;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_7578a6a294d52637758e0c13.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208000;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_a222a4d5f3eac9b51b4b1103.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d72d5fa52ead8d49b6e6a2df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_810e4eebf10ebbf15e072a19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003000;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_ac8b239974f2694deefd6389.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003000;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_d85658d956512bed4f2946d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.631000;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;}
.m6{transform:matrix(0.115481,0.222766,-0.221338,0.116231,0,0);-ms-transform:matrix(0.115481,0.222766,-0.221338,0.116231,0,0);-webkit-transform:matrix(0.115481,0.222766,-0.221338,0.116231,0,0);}
.me{transform:matrix(0.130778,0.213910,-0.212555,0.131607,0,0);-ms-transform:matrix(0.130778,0.213910,-0.212555,0.131607,0,0);-webkit-transform:matrix(0.130778,0.213910,-0.212555,0.131607,0,0);}
.m7{transform:matrix(0.134434,0.211586,-0.210230,0.135289,0,0);-ms-transform:matrix(0.134434,0.211586,-0.210230,0.135289,0,0);-webkit-transform:matrix(0.134434,0.211586,-0.210230,0.135289,0,0);}
.md{transform:matrix(0.155176,0.196468,-0.195232,0.156155,0,0);-ms-transform:matrix(0.155176,0.196468,-0.195232,0.156155,0,0);-webkit-transform:matrix(0.155176,0.196468,-0.195232,0.156155,0,0);}
.m8{transform:matrix(0.162876,0.189973,-0.188770,0.163908,0,0);-ms-transform:matrix(0.162876,0.189973,-0.188770,0.163908,0,0);-webkit-transform:matrix(0.162876,0.189973,-0.188770,0.163908,0,0);}
.m9{transform:matrix(0.179319,0.174103,-0.172999,0.180475,0,0);-ms-transform:matrix(0.179319,0.174103,-0.172999,0.180475,0,0);-webkit-transform:matrix(0.179319,0.174103,-0.172999,0.180475,0,0);}
.mf{transform:matrix(0.185921,0.166867,-0.165816,0.187096,0,0);-ms-transform:matrix(0.185921,0.166867,-0.165816,0.187096,0,0);-webkit-transform:matrix(0.185921,0.166867,-0.165816,0.187096,0,0);}
.m5{transform:matrix(0.195607,0.155103,-0.154105,0.196854,0,0);-ms-transform:matrix(0.195607,0.155103,-0.154105,0.196854,0,0);-webkit-transform:matrix(0.195607,0.155103,-0.154105,0.196854,0,0);}
.m4{transform:matrix(0.202186,0.146190,-0.145264,0.203466,0,0);-ms-transform:matrix(0.202186,0.146190,-0.145264,0.203466,0,0);-webkit-transform:matrix(0.202186,0.146190,-0.145264,0.203466,0,0);}
.m14{transform:matrix(0.206372,-0.142069,0.140511,0.206776,0,0);-ms-transform:matrix(0.206372,-0.142069,0.140511,0.206776,0,0);-webkit-transform:matrix(0.206372,-0.142069,0.140511,0.206776,0,0);}
.m3{transform:matrix(0.209659,0.134922,-0.134069,0.211011,0,0);-ms-transform:matrix(0.209659,0.134922,-0.134069,0.211011,0,0);-webkit-transform:matrix(0.209659,0.134922,-0.134069,0.211011,0,0);}
.mb{transform:matrix(0.213450,0.128663,-0.127863,0.214828,0,0);-ms-transform:matrix(0.213450,0.128663,-0.127863,0.214828,0,0);-webkit-transform:matrix(0.213450,0.128663,-0.127863,0.214828,0,0);}
.m10{transform:matrix(0.220987,0.114874,-0.114153,0.222417,0,0);-ms-transform:matrix(0.220987,0.114874,-0.114153,0.222417,0,0);-webkit-transform:matrix(0.220987,0.114874,-0.114153,0.222417,0,0);}
.m15{transform:matrix(0.228367,-0.101836,0.100710,0.228818,0,0);-ms-transform:matrix(0.228367,-0.101836,0.100710,0.228818,0,0);-webkit-transform:matrix(0.228367,-0.101836,0.100710,0.228818,0,0);}
.ma{transform:matrix(0.233717,0.085234,-0.084690,0.235218,0,0);-ms-transform:matrix(0.233717,0.085234,-0.084690,0.235218,0,0);-webkit-transform:matrix(0.233717,0.085234,-0.084690,0.235218,0,0);}
.m18{transform:matrix(0.238769,-0.073337,0.072536,0.239246,0,0);-ms-transform:matrix(0.238769,-0.073337,0.072536,0.239246,0,0);-webkit-transform:matrix(0.238769,-0.073337,0.072536,0.239246,0,0);}
.m19{transform:matrix(0.238773,-0.073344,0.072545,0.239243,0,0);-ms-transform:matrix(0.238773,-0.073344,0.072545,0.239243,0,0);-webkit-transform:matrix(0.238773,-0.073344,0.072545,0.239243,0,0);}
.mc{transform:matrix(0.239481,0.066803,-0.066377,0.241027,0,0);-ms-transform:matrix(0.239481,0.066803,-0.066377,0.241027,0,0);-webkit-transform:matrix(0.239481,0.066803,-0.066377,0.241027,0,0);}
.m16{transform:matrix(0.240869,-0.066055,0.065307,0.241319,0,0);-ms-transform:matrix(0.240869,-0.066055,0.065307,0.241319,0,0);-webkit-transform:matrix(0.240869,-0.066055,0.065307,0.241319,0,0);}
.m13{transform:matrix(0.246030,-0.042156,0.041687,0.246500,0,0);-ms-transform:matrix(0.246030,-0.042156,0.041687,0.246500,0,0);-webkit-transform:matrix(0.246030,-0.042156,0.041687,0.246500,0,0);}
.m11{transform:matrix(0.248401,0.003500,-0.003473,0.249976,0,0);-ms-transform:matrix(0.248401,0.003500,-0.003473,0.249976,0,0);-webkit-transform:matrix(0.248401,0.003500,-0.003473,0.249976,0,0);}
.m1a{transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248720,-0.019952,0.019701,0.249223,0,0);-ms-transform:matrix(0.248720,-0.019952,0.019701,0.249223,0,0);-webkit-transform:matrix(0.248720,-0.019952,0.019701,0.249223,0,0);}
.m12{transform:matrix(0.249499,0.003500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249499,0.003500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249499,0.003500,-0.003500,0.249976,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);}
.m2{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.259201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259201,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.297748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297748,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-40.890000px;}
.vd{vertical-align:-37.314000px;}
.v11{vertical-align:-21.204273px;}
.v16{vertical-align:-15.402327px;}
.v14{vertical-align:-14.141663px;}
.v15{vertical-align:-11.400398px;}
.v18{vertical-align:-8.868000px;}
.v2{vertical-align:-7.752000px;}
.v8{vertical-align:-4.434000px;}
.v12{vertical-align:-2.802480px;}
.v7{vertical-align:-1.110000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.464000px;}
.v9{vertical-align:3.709800px;}
.v13{vertical-align:5.534680px;}
.v1{vertical-align:7.003200px;}
.vb{vertical-align:9.360000px;}
.v1a{vertical-align:10.452737px;}
.v5{vertical-align:11.832000px;}
.v1b{vertical-align:13.132800px;}
.v3{vertical-align:17.376000px;}
.vc{vertical-align:21.384000px;}
.v19{vertical-align:25.779600px;}
.ve{vertical-align:30.810000px;}
.v17{vertical-align:39.488400px;}
.v4{vertical-align:56.586600px;}
.va{vertical-align:63.779400px;}
.v10{vertical-align:72.180000px;}
.ls52{letter-spacing:-3.997791px;}
.ls7b{letter-spacing:-3.908242px;}
.ls81{letter-spacing:-2.864333px;}
.ls4a{letter-spacing:-2.545578px;}
.ls4c{letter-spacing:-2.539971px;}
.ls4b{letter-spacing:-2.523150px;}
.ls4d{letter-spacing:-2.489508px;}
.ls49{letter-spacing:-2.483901px;}
.ls68{letter-spacing:-2.481509px;}
.ls69{letter-spacing:-2.459102px;}
.ls7f{letter-spacing:-2.458049px;}
.ls50{letter-spacing:-2.455866px;}
.ls76{letter-spacing:-1.830938px;}
.ls67{letter-spacing:-1.798114px;}
.ls65{letter-spacing:-1.434010px;}
.ls55{letter-spacing:-1.412964px;}
.ls85{letter-spacing:-1.309090px;}
.ls5b{letter-spacing:-0.754356px;}
.ls5c{letter-spacing:-0.044856px;}
.ls10{letter-spacing:-0.028800px;}
.ls99{letter-spacing:-0.028372px;}
.ls9a{letter-spacing:-0.024000px;}
.ls9c{letter-spacing:-0.021600px;}
.lsd{letter-spacing:-0.020793px;}
.ls7{letter-spacing:-0.019200px;}
.ls61{letter-spacing:-0.018509px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:-0.014400px;}
.ls62{letter-spacing:-0.013882px;}
.lsc{letter-spacing:-0.012476px;}
.ls4{letter-spacing:-0.012000px;}
.ls8c{letter-spacing:-0.011426px;}
.ls53{letter-spacing:-0.011214px;}
.ls96{letter-spacing:-0.010800px;}
.ls63{letter-spacing:-0.010735px;}
.ls15{letter-spacing:-0.010679px;}
.lsb{letter-spacing:-0.008317px;}
.ls14{letter-spacing:-0.007200px;}
.ls92{letter-spacing:-0.006799px;}
.ls9f{letter-spacing:-0.006421px;}
.ls8{letter-spacing:-0.006000px;}
.lse{letter-spacing:-0.005400px;}
.ls8d{letter-spacing:-0.004570px;}
.ls8e{letter-spacing:-0.004569px;}
.lsf{letter-spacing:-0.004159px;}
.ls97{letter-spacing:-0.003600px;}
.lsa{letter-spacing:-0.001925px;}
.ls2{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.002263px;}
.ls91{letter-spacing:0.002267px;}
.ls28{letter-spacing:0.002279px;}
.ls95{letter-spacing:0.004200px;}
.ls8f{letter-spacing:0.004566px;}
.ls98{letter-spacing:0.005144px;}
.ls13{letter-spacing:0.005339px;}
.ls1{letter-spacing:0.005400px;}
.ls12{letter-spacing:0.005426px;}
.ls74{letter-spacing:0.005599px;}
.ls66{letter-spacing:0.005602px;}
.ls5{letter-spacing:0.005779px;}
.ls9b{letter-spacing:0.006600px;}
.ls41{letter-spacing:0.006788px;}
.ls2f{letter-spacing:0.006839px;}
.ls1f{letter-spacing:0.006858px;}
.ls93{letter-spacing:0.008400px;}
.ls47{letter-spacing:0.009060px;}
.ls2b{letter-spacing:0.009119px;}
.ls40{letter-spacing:0.009149px;}
.ls0{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.010853px;}
.ls46{letter-spacing:0.011325px;}
.ls2c{letter-spacing:0.011399px;}
.ls8b{letter-spacing:0.011430px;}
.ls38{letter-spacing:0.011443px;}
.ls94{letter-spacing:0.012600px;}
.ls45{letter-spacing:0.013590px;}
.ls26{letter-spacing:0.013672px;}
.ls3d{letter-spacing:0.013688px;}
.ls31{letter-spacing:0.013690px;}
.ls90{letter-spacing:0.013731px;}
.ls18{letter-spacing:0.013943px;}
.ls9e{letter-spacing:0.014400px;}
.ls2a{letter-spacing:0.015951px;}
.ls2e{letter-spacing:0.015958px;}
.ls35{letter-spacing:0.016020px;}
.ls9{letter-spacing:0.016543px;}
.ls29{letter-spacing:0.018230px;}
.ls17{letter-spacing:0.018590px;}
.ls25{letter-spacing:0.020508px;}
.ls3e{letter-spacing:0.020517px;}
.ls3c{letter-spacing:0.020532px;}
.ls3b{letter-spacing:0.022817px;}
.ls36{letter-spacing:0.022885px;}
.ls37{letter-spacing:0.025174px;}
.ls30{letter-spacing:0.027381px;}
.ls20{letter-spacing:0.027423px;}
.ls32{letter-spacing:0.029682px;}
.ls23{letter-spacing:0.029708px;}
.ls21{letter-spacing:0.036564px;}
.ls39{letter-spacing:0.036583px;}
.ls3a{letter-spacing:0.038869px;}
.ls22{letter-spacing:0.041134px;}
.ls48{letter-spacing:0.045325px;}
.ls24{letter-spacing:0.047990px;}
.ls3f{letter-spacing:0.048031px;}
.ls1d{letter-spacing:0.341551px;}
.ls16{letter-spacing:0.970469px;}
.ls78{letter-spacing:0.985459px;}
.ls1e{letter-spacing:0.989545px;}
.ls8a{letter-spacing:1.018181px;}
.ls58{letter-spacing:1.070937px;}
.ls57{letter-spacing:1.082151px;}
.ls59{letter-spacing:1.093365px;}
.ls6b{letter-spacing:1.120320px;}
.ls54{letter-spacing:1.121400px;}
.ls7c{letter-spacing:1.164634px;}
.ls72{letter-spacing:1.165133px;}
.ls7e{letter-spacing:1.170233px;}
.ls89{letter-spacing:1.180418px;}
.ls86{letter-spacing:1.197202px;}
.ls83{letter-spacing:1.202796px;}
.ls9d{letter-spacing:1.301400px;}
.ls5e{letter-spacing:2.130660px;}
.ls7d{letter-spacing:2.194886px;}
.ls82{letter-spacing:2.237760px;}
.ls6e{letter-spacing:2.436696px;}
.ls5d{letter-spacing:2.489508px;}
.ls51{letter-spacing:2.556792px;}
.ls56{letter-spacing:2.568006px;}
.ls71{letter-spacing:2.576736px;}
.ls6c{letter-spacing:2.587939px;}
.ls7a{letter-spacing:2.598029px;}
.ls70{letter-spacing:2.599142px;}
.ls4f{letter-spacing:2.612862px;}
.ls5a{letter-spacing:2.618469px;}
.ls73{letter-spacing:2.621549px;}
.ls6a{letter-spacing:2.627150px;}
.ls6d{letter-spacing:2.632752px;}
.ls4e{letter-spacing:2.635290px;}
.ls79{letter-spacing:2.637223px;}
.ls6f{letter-spacing:2.649557px;}
.ls84{letter-spacing:2.713284px;}
.ls1b{letter-spacing:3.253135px;}
.ls75{letter-spacing:3.258734px;}
.ls80{letter-spacing:3.765031px;}
.ls87{letter-spacing:3.804192px;}
.ls42{letter-spacing:4.025402px;}
.ls64{letter-spacing:4.420290px;}
.ls77{letter-spacing:4.448747px;}
.ls88{letter-spacing:4.465684px;}
.ls34{letter-spacing:7.388503px;}
.ls44{letter-spacing:8.487511px;}
.ls27{letter-spacing:18.352581px;}
.ls2d{letter-spacing:25.029746px;}
.ls33{letter-spacing:37.983663px;}
.ls1c{letter-spacing:55.796028px;}
.ls19{letter-spacing:335.280000px;}
.ls1a{letter-spacing:701.946480px;}
.ls5f{letter-spacing:1134.426240px;}
.ls60{letter-spacing:1134.432864px;}
.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;}
}
.ws28{word-spacing:-27.455999px;}
.ws2a{word-spacing:-27.455308px;}
.ws27{word-spacing:-27.438390px;}
.ws9f{word-spacing:-24.602400px;}
.wsa0{word-spacing:-24.595200px;}
.ws22{word-spacing:-22.284084px;}
.ws4{word-spacing:-21.102000px;}
.ws25{word-spacing:-20.921724px;}
.wsc{word-spacing:-19.018800px;}
.wsd{word-spacing:-19.013400px;}
.ws13{word-spacing:-19.008000px;}
.ws9c{word-spacing:-16.616300px;}
.ws29{word-spacing:-16.408375px;}
.ws92{word-spacing:-14.796600px;}
.ws93{word-spacing:-14.788200px;}
.ws24{word-spacing:-10.438963px;}
.wsb4{word-spacing:-8.400000px;}
.wsac{word-spacing:-8.394000px;}
.wsa7{word-spacing:-8.214000px;}
.wsc8{word-spacing:-7.662600px;}
.wsc2{word-spacing:-6.879600px;}
.wsa9{word-spacing:-6.648000px;}
.wsab{word-spacing:-6.498000px;}
.wsb{word-spacing:-5.349019px;}
.ws2b{word-spacing:-5.177779px;}
.ws37{word-spacing:-5.173597px;}
.ws35{word-spacing:-5.172085px;}
.ws3b{word-spacing:-5.169061px;}
.ws36{word-spacing:-5.167340px;}
.ws2c{word-spacing:-5.166349px;}
.ws2d{word-spacing:-5.164664px;}
.ws33{word-spacing:-5.164646px;}
.ws3a{word-spacing:-5.161380px;}
.ws2e{word-spacing:-5.160094px;}
.ws34{word-spacing:-5.160079px;}
.ws39{word-spacing:-5.158789px;}
.ws2f{word-spacing:-5.158583px;}
.ws32{word-spacing:-5.156734px;}
.ws38{word-spacing:-5.155707px;}
.ws31{word-spacing:-5.152311px;}
.ws30{word-spacing:-5.149843px;}
.ws45{word-spacing:-5.130157px;}
.ws3e{word-spacing:-5.124284px;}
.ws46{word-spacing:-5.121821px;}
.ws47{word-spacing:-5.121720px;}
.ws4f{word-spacing:-5.119191px;}
.ws44{word-spacing:-5.118832px;}
.ws4b{word-spacing:-5.114921px;}
.ws43{word-spacing:-5.113777px;}
.ws7e{word-spacing:-5.056078px;}
.ws71{word-spacing:-5.041440px;}
.ws5b{word-spacing:-4.973409px;}
.wsbe{word-spacing:-4.919400px;}
.ws85{word-spacing:-4.688107px;}
.ws81{word-spacing:-4.652935px;}
.ws5d{word-spacing:-4.614561px;}
.wsb8{word-spacing:-4.163400px;}
.wsc6{word-spacing:-4.114800px;}
.wsc7{word-spacing:-3.888000px;}
.wsb2{word-spacing:-3.828000px;}
.ws8b{word-spacing:-3.647549px;}
.ws89{word-spacing:-3.630766px;}
.ws90{word-spacing:-3.625171px;}
.ws6b{word-spacing:-3.590626px;}
.ws58{word-spacing:-3.571659px;}
.ws57{word-spacing:-3.549231px;}
.ws56{word-spacing:-3.538017px;}
.ws91{word-spacing:-3.462934px;}
.ws7d{word-spacing:-3.432310px;}
.ws7c{word-spacing:-3.297929px;}
.wsbb{word-spacing:-2.878200px;}
.wsa5{word-spacing:-2.856000px;}
.ws68{word-spacing:-2.470306px;}
.ws65{word-spacing:-2.464704px;}
.ws7b{word-spacing:-2.458049px;}
.ws8f{word-spacing:-2.455942px;}
.ws8e{word-spacing:-2.444753px;}
.ws4a{word-spacing:-2.161727px;}
.wsaa{word-spacing:-2.052000px;}
.ws42{word-spacing:-1.682398px;}
.ws40{word-spacing:-1.326419px;}
.wsaf{word-spacing:-1.236000px;}
.ws8c{word-spacing:-1.146852px;}
.ws5e{word-spacing:-1.017824px;}
.ws77{word-spacing:-0.621511px;}
.ws1e{word-spacing:-0.119381px;}
.ws9b{word-spacing:-0.084000px;}
.ws1d{word-spacing:-0.075600px;}
.ws87{word-spacing:-0.055944px;}
.ws97{word-spacing:-0.054600px;}
.ws1f{word-spacing:-0.043200px;}
.ws99{word-spacing:-0.037800px;}
.ws9a{word-spacing:-0.029400px;}
.wsce{word-spacing:-0.028800px;}
.ws73{word-spacing:-0.022406px;}
.ws19{word-spacing:-0.021600px;}
.ws59{word-spacing:-0.016821px;}
.ws3{word-spacing:-0.016200px;}
.wscb{word-spacing:-0.014400px;}
.wsae{word-spacing:-0.012000px;}
.ws50{word-spacing:-0.011214px;}
.wsc0{word-spacing:-0.010800px;}
.ws60{word-spacing:-0.009295px;}
.ws14{word-spacing:-0.008317px;}
.wsca{word-spacing:-0.007200px;}
.wsa1{word-spacing:-0.006600px;}
.wscf{word-spacing:-0.006421px;}
.ws9{word-spacing:-0.006000px;}
.ws6a{word-spacing:-0.005602px;}
.ws82{word-spacing:-0.005599px;}
.ws2{word-spacing:-0.005400px;}
.ws5f{word-spacing:-0.004648px;}
.ws96{word-spacing:-0.004200px;}
.ws1a{word-spacing:-0.004159px;}
.ws16{word-spacing:-0.004140px;}
.ws5{word-spacing:-0.002890px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.004159px;}
.ws98{word-spacing:0.004200px;}
.ws1{word-spacing:0.004800px;}
.ws62{word-spacing:0.005368px;}
.ws1c{word-spacing:0.005400px;}
.ws83{word-spacing:0.005599px;}
.ws5c{word-spacing:0.005607px;}
.ws7{word-spacing:0.006000px;}
.ws94{word-spacing:0.007200px;}
.ws1b{word-spacing:0.008317px;}
.ws61{word-spacing:0.009254px;}
.ws6{word-spacing:0.009600px;}
.ws95{word-spacing:0.010800px;}
.wsa{word-spacing:0.012000px;}
.ws18{word-spacing:0.012476px;}
.ws9d{word-spacing:0.014186px;}
.wsc9{word-spacing:0.014400px;}
.ws21{word-spacing:0.016018px;}
.ws69{word-spacing:0.016805px;}
.wscd{word-spacing:0.021600px;}
.ws6e{word-spacing:0.022406px;}
.ws4e{word-spacing:0.022428px;}
.ws8{word-spacing:0.024000px;}
.wsad{word-spacing:0.030000px;}
.ws74{word-spacing:0.033610px;}
.ws6c{word-spacing:0.039211px;}
.wscc{word-spacing:0.043200px;}
.ws6f{word-spacing:0.044813px;}
.ws51{word-spacing:0.044856px;}
.ws15{word-spacing:0.049903px;}
.ws75{word-spacing:0.061618px;}
.ws4c{word-spacing:0.061677px;}
.ws4d{word-spacing:0.072891px;}
.ws64{word-spacing:0.080514px;}
.ws6d{word-spacing:0.190454px;}
.ws48{word-spacing:0.686673px;}
.ws63{word-spacing:0.917860px;}
.wsba{word-spacing:1.382400px;}
.ws86{word-spacing:1.393006px;}
.wsb7{word-spacing:1.414800px;}
.ws7f{word-spacing:1.450193px;}
.ws72{word-spacing:1.462018px;}
.ws80{word-spacing:1.466990px;}
.ws54{word-spacing:1.502676px;}
.ws76{word-spacing:2.626025px;}
.ws67{word-spacing:2.627150px;}
.ws78{word-spacing:2.631624px;}
.ws79{word-spacing:2.637223px;}
.ws5a{word-spacing:2.652111px;}
.ws8d{word-spacing:2.657340px;}
.ws53{word-spacing:2.663325px;}
.wsa4{word-spacing:3.144000px;}
.wsc4{word-spacing:3.871800px;}
.ws8a{word-spacing:3.955241px;}
.ws55{word-spacing:4.014612px;}
.ws66{word-spacing:4.061160px;}
.ws7a{word-spacing:4.462562px;}
.wsc1{word-spacing:4.806000px;}
.ws70{word-spacing:5.114261px;}
.ws84{word-spacing:5.521673px;}
.ws52{word-spacing:6.599439px;}
.wsb1{word-spacing:7.206000px;}
.wsb5{word-spacing:9.304200px;}
.wsb3{word-spacing:10.284000px;}
.wsc5{word-spacing:11.523600px;}
.wsa2{word-spacing:12.336000px;}
.wsa8{word-spacing:13.632000px;}
.wsc3{word-spacing:16.740000px;}
.wsb6{word-spacing:18.019800px;}
.wsb9{word-spacing:18.257400px;}
.ws49{word-spacing:20.047227px;}
.wsa6{word-spacing:22.596000px;}
.wsa3{word-spacing:22.806000px;}
.ws3c{word-spacing:31.391860px;}
.wsb0{word-spacing:34.710000px;}
.wsbc{word-spacing:36.298800px;}
.wsbd{word-spacing:36.666000px;}
.wsbf{word-spacing:37.945800px;}
.ws41{word-spacing:45.631066px;}
.ws3d{word-spacing:51.437756px;}
.ws3f{word-spacing:99.939404px;}
.ws23{word-spacing:239.251375px;}
.ws88{word-spacing:481.879238px;}
.wsf{word-spacing:802.704600px;}
.ws11{word-spacing:818.418600px;}
.ws10{word-spacing:1010.610000px;}
.ws9e{word-spacing:1369.008000px;}
.wse{word-spacing:1660.662000px;}
.ws20{word-spacing:2289.146400px;}
.ws12{word-spacing:3702.024000px;}
.ws26{word-spacing:4905.149400px;}
._37{margin-left:-4623.312600px;}
._13{margin-left:-3153.011400px;}
._32{margin-left:-483.583663px;}
._31{margin-left:-479.814016px;}
._30{margin-left:-478.785631px;}
._26{margin-left:-22.407089px;}
._1a{margin-left:-18.639468px;}
._2{margin-left:-8.559000px;}
._25{margin-left:-7.538774px;}
._6{margin-left:-6.420000px;}
._3{margin-left:-4.479000px;}
._1{margin-left:-2.613600px;}
._0{margin-left:-1.228800px;}
._18{width:1.217586px;}
._16{width:2.545578px;}
._15{width:3.683799px;}
._14{width:5.085549px;}
._17{width:6.459264px;}
._19{width:8.336601px;}
._2f{width:10.092988px;}
._1f{width:12.016044px;}
._28{width:76.684097px;}
._2d{width:106.691795px;}
._29{width:122.244067px;}
._1e{width:124.466330px;}
._1d{width:133.224270px;}
._2a{width:147.131366px;}
._1c{width:151.289946px;}
._2c{width:162.608154px;}
._2b{width:163.989277px;}
._2e{width:178.185697px;}
._4{width:213.460800px;}
._e{width:238.086000px;}
._5{width:249.720000px;}
._22{width:301.121011px;}
._3d{width:334.380000px;}
._23{width:346.732200px;}
._d{width:452.872800px;}
._46{width:456.760800px;}
._42{width:476.654400px;}
._24{width:479.576609px;}
._a{width:509.851800px;}
._43{width:512.395200px;}
._f{width:532.027200px;}
._c{width:543.429600px;}
._27{width:560.687090px;}
._40{width:589.471200px;}
._45{width:600.919261px;}
._10{width:663.754200px;}
._9{width:737.827200px;}
._1b{width:821.813822px;}
._12{width:843.933600px;}
._8{width:859.758000px;}
._21{width:886.860600px;}
._7{width:993.453600px;}
._36{width:1005.374400px;}
._3e{width:1069.207200px;}
._39{width:1078.516800px;}
._35{width:1091.342400px;}
._3b{width:1127.174400px;}
._3c{width:1179.516600px;}
._44{width:1260.972000px;}
._3f{width:1279.756800px;}
._3a{width:1291.150800px;}
._47{width:1484.172000px;}
._33{width:1714.003200px;}
._20{width:1952.996400px;}
._b{width:1974.208800px;}
._38{width:2415.096000px;}
._34{width:2823.349200px;}
._11{width:2882.528400px;}
._41{width:2970.828000px;}
._48{width:3387.369600px;}
.fc9{color:rgb(241,88,39);}
.fc7{color:rgb(173,205,72);}
.fc6{color:rgb(76,76,78);}
.fc5{color:transparent;}
.fc4{color:rgb(166,206,57);}
.fc8{color:rgb(183,10,77);}
.fc2{color:rgb(64,64,65);}
.fc1{color:rgb(173,188,114);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs37{font-size:9.565163px;}
.fs4{font-size:14.448000px;}
.fs6{font-size:19.248000px;}
.fs32{font-size:22.627330px;}
.fs33{font-size:22.649698px;}
.fs36{font-size:22.662477px;}
.fs34{font-size:22.662924px;}
.fs31{font-size:22.669172px;}
.fs2f{font-size:22.673788px;}
.fs30{font-size:22.673822px;}
.fs35{font-size:22.674312px;}
.fs24{font-size:22.786915px;}
.fs2c{font-size:22.796240px;}
.fs25{font-size:22.797838px;}
.fs2b{font-size:22.812864px;}
.fs26{font-size:22.817407px;}
.fs27{font-size:22.832209px;}
.fs2d{font-size:22.837963px;}
.fs23{font-size:22.845808px;}
.fs22{font-size:22.852496px;}
.fs21{font-size:22.859950px;}
.fs29{font-size:22.864335px;}
.fs2e{font-size:22.871951px;}
.fs28{font-size:22.885332px;}
.fs2a{font-size:22.892021px;}
.fs16{font-size:30.534000px;}
.fs13{font-size:30.660000px;}
.fsa{font-size:33.690000px;}
.fs3a{font-size:36.000000px;}
.fs39{font-size:40.440000px;}
.fs1e{font-size:40.722000px;}
.fsf{font-size:40.776000px;}
.fs9{font-size:41.358000px;}
.fs8{font-size:41.400000px;}
.fs38{font-size:41.502000px;}
.fs7{font-size:41.586000px;}
.fs3e{font-size:42.000000px;}
.fs15{font-size:46.272000px;}
.fs12{font-size:46.476000px;}
.fs40{font-size:47.286000px;}
.fs17{font-size:47.520000px;}
.fs1{font-size:48.000000px;}
.fs3d{font-size:51.444000px;}
.fs3f{font-size:51.504000px;}
.fs3c{font-size:51.876000px;}
.fs3b{font-size:52.872000px;}
.fsc{font-size:53.394000px;}
.fs43{font-size:53.508000px;}
.fs19{font-size:53.676000px;}
.fs14{font-size:53.922000px;}
.fs2{font-size:54.000000px;}
.fsb{font-size:54.264000px;}
.fs1f{font-size:55.944000px;}
.fs1c{font-size:55.992000px;}
.fs1b{font-size:56.016000px;}
.fsd{font-size:56.070000px;}
.fs3{font-size:60.000000px;}
.fs44{font-size:64.206000px;}
.fs41{font-size:66.000000px;}
.fs10{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs11{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.fs18{font-size:92.574000px;}
.fs20{font-size:101.724000px;}
.fs1d{font-size:101.802000px;}
.fs1a{font-size:101.850000px;}
.fse{font-size:101.940000px;}
.fs42{font-size:279.996000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:21.884726px;}
.yd4{bottom:47.369942px;}
.yd3{bottom:72.855159px;}
.yd2{bottom:98.340376px;}
.y2ac{bottom:119.745450px;}
.y1b{bottom:123.538350px;}
.yd1{bottom:125.099783px;}
.yb4{bottom:126.795000px;}
.y17{bottom:139.845300px;}
.y1a{bottom:139.948950px;}
.y112{bottom:140.850000px;}
.yd0{bottom:150.585000px;}
.y1d{bottom:154.184700px;}
.y19{bottom:156.359550px;}
.y16{bottom:157.770600px;}
.yf7{bottom:165.390000px;}
.y133{bottom:167.788728px;}
.y1c{bottom:170.593950px;}
.y207{bottom:171.165000px;}
.y18{bottom:172.770150px;}
.y4e{bottom:172.800000px;}
.y15{bottom:174.165000px;}
.y1c7{bottom:175.695600px;}
.ycf{bottom:176.071500px;}
.y34{bottom:176.250000px;}
.y1de{bottom:176.295300px;}
.y1c8{bottom:177.375900px;}
.y91{bottom:179.085300px;}
.y8f{bottom:179.850750px;}
.y1c6{bottom:180.135300px;}
.y1d9{bottom:181.560000px;}
.y1fd{bottom:183.840600px;}
.y209{bottom:184.470000px;}
.y111{bottom:185.986879px;}
.y55{bottom:186.825900px;}
.y1dd{bottom:189.060150px;}
.y1d8{bottom:194.324850px;}
.y132{bottom:194.519309px;}
.y8e{bottom:196.260000px;}
.y1fc{bottom:196.605450px;}
.yce{bottom:197.733711px;}
.y1dc{bottom:201.825000px;}
.y54{bottom:203.235150px;}
.y90{bottom:203.775450px;}
.y1d7{bottom:207.075000px;}
.y32{bottom:209.383950px;}
.y208{bottom:210.780000px;}
.y289{bottom:211.890000px;}
.y1db{bottom:214.575150px;}
.y41{bottom:216.299400px;}
.y110{bottom:217.816571px;}
.y1f5{bottom:219.556500px;}
.y131{bottom:219.959274px;}
.y8d{bottom:220.321050px;}
.ycd{bottom:220.670546px;}
.yb3{bottom:224.549550px;}
.y1fb{bottom:224.610000px;}
.y2a4{bottom:225.960000px;}
.y31{bottom:227.294400px;}
.y1da{bottom:227.340000px;}
.y53{bottom:231.735000px;}
.y1f4{bottom:232.321350px;}
.y40{bottom:232.710000px;}
.y1fa{bottom:237.374850px;}
.y2a3{bottom:242.880000px;}
.y1eb{bottom:243.285450px;}
.y30{bottom:243.705000px;}
.y1f3{bottom:245.071500px;}
.y130{bottom:245.414637px;}
.ycc{bottom:246.157165px;}
.y5b{bottom:247.214344px;}
.y292{bottom:248.670000px;}
.y1f9{bottom:250.139700px;}
.y10f{bottom:250.922027px;}
.y1ea{bottom:256.050300px;}
.y57{bottom:256.665450px;}
.yb2{bottom:257.369400px;}
.y3d{bottom:257.550600px;}
.y1f2{bottom:257.836350px;}
.y5a{bottom:259.844013px;}
.y2a2{bottom:261.105000px;}
.y291{bottom:266.895000px;}
.y1e9{bottom:268.815150px;}
.y12f{bottom:270.870000px;}
.ycb{bottom:271.642381px;}
.y1e6{bottom:272.010300px;}
.y56{bottom:273.076050px;}
.y3c{bottom:273.945000px;}
.y2e{bottom:274.740000px;}
.y1f8{bottom:275.850000px;}
.y2ae{bottom:277.530750px;}
.y2a1{bottom:279.330000px;}
.y1e8{bottom:281.565300px;}
.y10e{bottom:282.751718px;}
.y1e5{bottom:284.775150px;}
.y290{bottom:285.120000px;}
.y1f7{bottom:288.618000px;}
.yb1{bottom:290.177100px;}
.ya3{bottom:290.833200px;}
.y9f{bottom:292.680000px;}
.y1e7{bottom:294.333300px;}
.y12e{bottom:296.317500px;}
.yca{bottom:297.129000px;}
.y1e4{bottom:297.536850px;}
.y2a0{bottom:297.565500px;}
.y39{bottom:302.881800px;}
.y28f{bottom:303.352500px;}
.ya2{bottom:307.239750px;}
.y52{bottom:314.427116px;}
.y2c{bottom:314.650500px;}
.y29f{bottom:315.795000px;}
.y10d{bottom:315.850172px;}
.ya0{bottom:317.425500px;}
.y12d{bottom:317.953517px;}
.y38{bottom:319.287000px;}
.y28e{bottom:321.582000px;}
.yb0{bottom:322.991550px;}
.yc9{bottom:334.083494px;}
.ya1{bottom:335.742300px;}
.y28d{bottom:339.811500px;}
.y12c{bottom:340.858445px;}
.y5d{bottom:346.752474px;}
.y10c{bottom:347.678464px;}
.y9e{bottom:349.405950px;}
.y29e{bottom:352.254000px;}
.yaf{bottom:355.806000px;}
.y36{bottom:355.948500px;}
.y28c{bottom:358.041000px;}
.y5c{bottom:359.316000px;}
.yc8{bottom:359.568711px;}
.y2a{bottom:360.097500px;}
.ya5{bottom:360.676800px;}
.y9d{bottom:365.812500px;}
.y12b{bottom:366.308209px;}
.y32f{bottom:369.085500px;}
.y29d{bottom:370.483500px;}
.yae{bottom:372.212550px;}
.y28b{bottom:376.270500px;}
.ya4{bottom:377.083350px;}
.y10b{bottom:380.778318px;}
.yc7{bottom:385.055329px;}
.y29c{bottom:388.713000px;}
.y12a{bottom:391.757972px;}
.y9c{bottom:393.673568px;}
.y59{bottom:394.485965px;}
.y326{bottom:400.138200px;}
.ya8{bottom:403.923450px;}
.yad{bottom:405.027000px;}
.y29b{bottom:406.942500px;}
.y134{bottom:409.840500px;}
.y9b{bottom:409.896000px;}
.yc6{bottom:410.540546px;}
.y10a{bottom:412.606609px;}
.y28a{bottom:416.292600px;}
.y129{bottom:417.207736px;}
.ya7{bottom:420.330000px;}
.yac{bottom:421.433550px;}
.y325{bottom:422.013600px;}
.y32d{bottom:422.017200px;}
.y202{bottom:423.574630px;}
.y29a{bottom:425.172000px;}
.y14a{bottom:430.412525px;}
.y5{bottom:432.835200px;}
.y123{bottom:432.876017px;}
.yc5{bottom:436.027165px;}
.y9a{bottom:437.100150px;}
.y5e{bottom:441.726000px;}
.y128{bottom:442.657500px;}
.y299{bottom:443.401500px;}
.y324{bottom:443.889000px;}
.y32c{bottom:443.890800px;}
.y109{bottom:444.436780px;}
.ya6{bottom:446.529000px;}
.y99{bottom:453.506700px;}
.yab{bottom:454.248000px;}
.yc4{bottom:461.512381px;}
.y298{bottom:461.631000px;}
.y323{bottom:465.764400px;}
.y122{bottom:465.961690px;}
.y149{bottom:468.557941px;}
.y127{bottom:469.380000px;}
.y98{bottom:476.063850px;}
.yaa{bottom:477.356850px;}
.y108{bottom:477.539435px;}
.y2aa{bottom:478.362000px;}
.y297{bottom:479.862000px;}
.y2fc{bottom:482.860500px;}
.yc3{bottom:486.999139px;}
.y322{bottom:487.639800px;}
.y32b{bottom:487.643400px;}
.y318{bottom:489.948750px;}
.y97{bottom:492.470400px;}
.y148{bottom:495.261411px;}
.y126{bottom:496.104000px;}
.y2a9{bottom:496.591500px;}
.y121{bottom:497.773545px;}
.y296{bottom:498.091500px;}
.y306{bottom:499.684950px;}
.ya9{bottom:502.047000px;}
.y29{bottom:502.573500px;}
.y317{bottom:505.176750px;}
.y107{bottom:509.367726px;}
.y321{bottom:509.515200px;}
.y32a{bottom:509.518800px;}
.yc2{bottom:512.484355px;}
.y2a8{bottom:514.821000px;}
.y305{bottom:516.091500px;}
.y96{bottom:519.536550px;}
.y147{bottom:520.692155px;}
.y125{bottom:521.554500px;}
.y316{bottom:521.583300px;}
.y51{bottom:522.760500px;}
.y120{bottom:529.586800px;}
.y320{bottom:531.388800px;}
.y329{bottom:531.394200px;}
.y304{bottom:532.498050px;}
.y2a7{bottom:533.050500px;}
.y295{bottom:534.550500px;}
.y315{bottom:537.989850px;}
.yc1{bottom:539.243763px;}
.y106{bottom:542.467580px;}
.y95{bottom:543.958050px;}
.y146{bottom:546.121500px;}
.y124{bottom:548.277000px;}
.y303{bottom:548.904600px;}
.y2a6{bottom:551.280000px;}
.y294{bottom:552.780000px;}
.y314{bottom:554.396400px;}
.y11f{bottom:562.672472px;}
.yc0{bottom:564.730382px;}
.y94{bottom:565.176000px;}
.y302{bottom:565.309800px;}
.y2a5{bottom:569.509500px;}
.y313{bottom:570.802950px;}
.y105{bottom:574.295872px;}
.y31f{bottom:575.141400px;}
.y4f{bottom:578.660646px;}
.y301{bottom:581.716350px;}
.y145{bottom:582.999091px;}
.y58{bottom:584.311500px;}
.y226{bottom:585.138545px;}
.y293{bottom:589.239000px;}
.ybf{bottom:590.214928px;}
.y236{bottom:590.947500px;}
.y4{bottom:591.493200px;}
.y11e{bottom:593.211909px;}
.y31e{bottom:597.016800px;}
.y300{bottom:598.122900px;}
.y135{bottom:600.390000px;}
.y10{bottom:600.520500px;}
.y312{bottom:603.617400px;}
.y104{bottom:606.124163px;}
.y144{bottom:608.429834px;}
.ya{bottom:612.585450px;}
.y2ff{bottom:614.529450px;}
.y239{bottom:615.667500px;}
.ybe{bottom:615.700144px;}
.yf{bottom:616.927050px;}
.y31d{bottom:618.892200px;}
.y311{bottom:620.023950px;}
.y11d{bottom:625.025164px;}
.y9{bottom:628.992000px;}
.y2fe{bottom:630.936000px;}
.ye{bottom:633.333600px;}
.y143{bottom:633.860578px;}
.y310{bottom:636.430500px;}
.y103{bottom:639.224017px;}
.y31c{bottom:640.767600px;}
.ybd{bottom:641.186763px;}
.y30f{bottom:652.837050px;}
.y50{bottom:655.705500px;}
.y8{bottom:657.214950px;}
.yd{bottom:658.948500px;}
.y142{bottom:659.289923px;}
.y31b{bottom:662.641200px;}
.y328{bottom:662.650200px;}
.y11c{bottom:663.200509px;}
.ybc{bottom:666.673382px;}
.y30e{bottom:669.243600px;}
.y102{bottom:671.052308px;}
.y288{bottom:671.413500px;}
.y7{bottom:675.129450px;}
.yc{bottom:675.355050px;}
.y12{bottom:675.357750px;}
.y2fd{bottom:679.297650px;}
.y31a{bottom:684.516600px;}
.y141{bottom:684.719269px;}
.y30d{bottom:685.648800px;}
.y287{bottom:688.333500px;}
.y11b{bottom:688.651673px;}
.y6{bottom:691.536000px;}
.yb{bottom:691.761600px;}
.y11{bottom:691.764300px;}
.ybb{bottom:692.158639px;}
.y270{bottom:692.367000px;}
.y30c{bottom:702.055350px;}
.y101{bottom:704.152163px;}
.y319{bottom:706.392000px;}
.y327{bottom:706.402800px;}
.y286{bottom:706.563000px;}
.y268{bottom:708.091500px;}
.y140{bottom:710.150012px;}
.y26f{bottom:710.598000px;}
.y11a{bottom:714.102836px;}
.y30b{bottom:718.461900px;}
.yba{bottom:718.918046px;}
.y25e{bottom:721.558500px;}
.y285{bottom:724.792500px;}
.y267{bottom:726.321000px;}
.y26e{bottom:728.827500px;}
.y30a{bottom:734.868450px;}
.y13f{bottom:735.580756px;}
.y100{bottom:735.980454px;}
.y119{bottom:739.554000px;}
.y25d{bottom:739.788000px;}
.y200{bottom:740.328176px;}
.y284{bottom:743.022000px;}
.y266{bottom:744.550500px;}
.y26d{bottom:747.057000px;}
.yb9{bottom:750.775618px;}
.y32e{bottom:755.344500px;}
.y25c{bottom:758.017500px;}
.y75{bottom:760.369500px;}
.y76{bottom:760.744800px;}
.y13e{bottom:761.011500px;}
.y283{bottom:761.251500px;}
.y265{bottom:762.780000px;}
.y26c{bottom:765.286500px;}
.y309{bottom:767.682900px;}
.yff{bottom:769.080308px;}
.y118{bottom:770.093900px;}
.y3f{bottom:771.619500px;}
.y43{bottom:772.548000px;}
.y25b{bottom:776.247000px;}
.y282{bottom:779.481000px;}
.y264{bottom:781.009500px;}
.yb8{bottom:782.633191px;}
.y26b{bottom:783.516000px;}
.y308{bottom:784.089450px;}
.y13d{bottom:787.713000px;}
.y3e{bottom:789.850500px;}
.y117{bottom:790.453991px;}
.y2f{bottom:790.645500px;}
.y42{bottom:790.777500px;}
.y281{bottom:797.710500px;}
.yfe{bottom:800.908600px;}
.y5f{bottom:801.246000px;}
.y116{bottom:809.541664px;}
.y13c{bottom:814.415114px;}
.yb7{bottom:815.764954px;}
.y280{bottom:815.940000px;}
.y307{bottom:816.903900px;}
.y3b{bottom:816.957000px;}
.y3{bottom:817.222800px;}
.y45{bottom:820.213500px;}
.y2bd{bottom:822.502272px;}
.y35{bottom:826.804500px;}
.y115{bottom:829.903154px;}
.y2d{bottom:830.550000px;}
.yfd{bottom:832.736891px;}
.y27f{bottom:834.169500px;}
.y3a{bottom:835.186500px;}
.y269{bottom:838.092000px;}
.y44{bottom:838.443000px;}
.y2c0{bottom:840.592500px;}
.yf8{bottom:845.583000px;}
.yb6{bottom:847.622526px;}
.y221{bottom:847.842000px;}
.y114{bottom:848.990827px;}
.y27e{bottom:852.399000px;}
.y13b{bottom:852.560530px;}
.y47{bottom:865.876500px;}
.y204{bottom:866.069400px;}
.y113{bottom:868.078500px;}
.y27d{bottom:870.628500px;}
.yfc{bottom:870.930000px;}
.y48{bottom:871.735500px;}
.y37{bottom:871.846500px;}
.y33{bottom:875.797500px;}
.y2b{bottom:875.998500px;}
.y13a{bottom:879.264000px;}
.y6c{bottom:879.460950px;}
.yb5{bottom:879.481500px;}
.y46{bottom:881.674500px;}
.y1cc{bottom:882.949500px;}
.y65{bottom:885.445500px;}
.y2fb{bottom:886.744950px;}
.y27c{bottom:888.858000px;}
.y1cb{bottom:889.548000px;}
.y1d0{bottom:889.612500px;}
.y68{bottom:892.379100px;}
.y1ca{bottom:892.449300px;}
.y1cd{bottom:892.944000px;}
.y6b{bottom:895.867500px;}
.y71{bottom:895.868850px;}
.y2e3{bottom:898.129500px;}
.y1c3{bottom:899.706000px;}
.y64{bottom:901.852050px;}
.y2fa{bottom:901.972950px;}
.y139{bottom:904.693500px;}
.y27b{bottom:907.087500px;}
.y67{bottom:908.785650px;}
.y27{bottom:910.162500px;}
.y6a{bottom:912.274050px;}
.y6f{bottom:912.275400px;}
.y61{bottom:913.710450px;}
.y6e{bottom:914.535300px;}
.y2e2{bottom:914.536050px;}
.y63{bottom:918.258600px;}
.y2f9{bottom:918.379500px;}
.yfb{bottom:920.581500px;}
.y66{bottom:925.192200px;}
.y27a{bottom:925.317000px;}
.y69{bottom:928.680600px;}
.y70{bottom:928.681950px;}
.y60{bottom:930.117000px;}
.y2e1{bottom:930.941250px;}
.y6d{bottom:930.941850px;}
.y138{bottom:931.396500px;}
.y62{bottom:934.665150px;}
.y2f8{bottom:934.786050px;}
.y256{bottom:938.403150px;}
.y254{bottom:938.698800px;}
.y206{bottom:941.563500px;}
.y279{bottom:943.546500px;}
.yfa{bottom:946.044000px;}
.y2e0{bottom:947.347800px;}
.y26a{bottom:950.133000px;}
.y2f7{bottom:951.192600px;}
.y1c9{bottom:953.795100px;}
.y137{bottom:956.826000px;}
.y1f6{bottom:957.393000px;}
.y83{bottom:957.758250px;}
.y8c{bottom:957.759900px;}
.y85{bottom:960.269250px;}
.y1d4{bottom:960.856200px;}
.y278{bottom:961.776000px;}
.y1d6{bottom:962.480550px;}
.y79{bottom:962.899050px;}
.y2df{bottom:963.754350px;}
.y7e{bottom:965.273700px;}
.y2f6{bottom:967.599150px;}
.yf9{bottom:972.780000px;}
.y1d3{bottom:973.616850px;}
.y8b{bottom:974.166450px;}
.y1d5{bottom:975.241200px;}
.y84{bottom:976.675800px;}
.y277{bottom:980.005500px;}
.y2de{bottom:980.160900px;}
.y81{bottom:980.881050px;}
.y7b{bottom:982.893900px;}
.y136{bottom:983.529000px;}
.y1d2{bottom:983.557500px;}
.y2f5{bottom:984.005700px;}
.y78{bottom:988.107600px;}
.y8a{bottom:990.573000px;}
.y2dd{bottom:996.567450px;}
.y276{bottom:998.235000px;}
.y1f1{bottom:999.410400px;}
.y2f4{bottom:1000.412250px;}
.y1f0{bottom:1002.298950px;}
.y7f{bottom:1005.302550px;}
.y89{bottom:1011.335597px;}
.y2dc{bottom:1012.974000px;}
.y77{bottom:1013.898000px;}
.y2{bottom:1014.588000px;}
.y1ef{bottom:1015.059600px;}
.y275{bottom:1016.464500px;}
.y4d{bottom:1016.815799px;}
.y2f3{bottom:1016.818800px;}
.y4c{bottom:1022.191765px;}
.y7c{bottom:1026.520500px;}
.y7a{bottom:1026.521850px;}
.y1ee{bottom:1027.820250px;}
.y88{bottom:1027.821000px;}
.y201{bottom:1031.308488px;}
.y2f2{bottom:1033.225350px;}
.y274{bottom:1034.694000px;}
.y1e3{bottom:1038.574350px;}
.y1ed{bottom:1040.581950px;}
.y87{bottom:1048.702350px;}
.y2f1{bottom:1049.631900px;}
.y1e2{bottom:1051.335000px;}
.y273{bottom:1052.923500px;}
.y1ec{bottom:1053.342600px;}
.y14b{bottom:1060.516500px;}
.y86{bottom:1065.107550px;}
.y2f0{bottom:1066.038450px;}
.y272{bottom:1071.153000px;}
.y1e1{bottom:1071.397200px;}
.y2ef{bottom:1082.445000px;}
.y82{bottom:1082.969400px;}
.y225{bottom:1085.043403px;}
.y1e0{bottom:1086.547650px;}
.y271{bottom:1089.382500px;}
.y1c2{bottom:1094.672817px;}
.y235{bottom:1095.532500px;}
.y2da{bottom:1096.642500px;}
.y2ee{bottom:1098.851550px;}
.y1df{bottom:1099.308300px;}
.y1c1{bottom:1106.959500px;}
.y80{bottom:1107.390900px;}
.y238{bottom:1110.132000px;}
.y2ed{bottom:1115.258100px;}
.y7d{bottom:1128.608850px;}
.y2ec{bottom:1131.664650px;}
.ydc{bottom:1138.578000px;}
.y14{bottom:1138.945050px;}
.y26{bottom:1139.808000px;}
.ye8{bottom:1140.018000px;}
.yf0{bottom:1142.982000px;}
.ye1{bottom:1145.571938px;}
.ydf{bottom:1146.735000px;}
.y2eb{bottom:1148.071200px;}
.y252{bottom:1150.102500px;}
.y13{bottom:1155.350250px;}
.ye0{bottom:1159.778489px;}
.yee{bottom:1161.062885px;}
.yda{bottom:1161.618000px;}
.y2ea{bottom:1164.477750px;}
.y251{bottom:1167.022500px;}
.yed{bottom:1175.185099px;}
.ye6{bottom:1176.018000px;}
.yef{bottom:1178.425500px;}
.y2e9{bottom:1180.884300px;}
.y250{bottom:1185.252000px;}
.yde{bottom:1188.378000px;}
.yec{bottom:1189.305000px;}
.y2e8{bottom:1197.290850px;}
.y233{bottom:1198.873500px;}
.y263{bottom:1199.862000px;}
.y24f{bottom:1203.481500px;}
.y2db{bottom:1212.810000px;}
.y25a{bottom:1213.330500px;}
.y2e7{bottom:1213.697400px;}
.y21c{bottom:1214.360400px;}
.yeb{bottom:1215.946442px;}
.y232{bottom:1217.103000px;}
.y262{bottom:1218.093000px;}
.ye4{bottom:1218.168000px;}
.y24e{bottom:1221.711000px;}
.y21f{bottom:1226.022000px;}
.y227{bottom:1226.931000px;}
.yea{bottom:1230.067500px;}
.y2e6{bottom:1230.102600px;}
.y259{bottom:1231.560000px;}
.y231{bottom:1235.332500px;}
.y261{bottom:1236.324000px;}
.ydd{bottom:1237.221000px;}
.y24d{bottom:1239.940500px;}
.y2e5{bottom:1246.509150px;}
.y21b{bottom:1247.173500px;}
.y258{bottom:1249.789500px;}
.y230{bottom:1253.562000px;}
.y260{bottom:1254.555000px;}
.ye9{bottom:1258.077000px;}
.y24c{bottom:1258.170000px;}
.y2e4{bottom:1262.915700px;}
.y21a{bottom:1263.580050px;}
.y257{bottom:1268.019000px;}
.y22f{bottom:1271.791500px;}
.y25f{bottom:1272.786000px;}
.y24b{bottom:1276.399500px;}
.y2bf{bottom:1281.541500px;}
.ye7{bottom:1284.496500px;}
.y2bc{bottom:1285.325069px;}
.ydb{bottom:1287.700500px;}
.y22e{bottom:1290.021000px;}
.y1bf{bottom:1292.374800px;}
.y170{bottom:1292.788368px;}
.y24a{bottom:1294.629000px;}
.y219{bottom:1296.394500px;}
.y16f{bottom:1304.703000px;}
.y22d{bottom:1308.250500px;}
.y1b2{bottom:1312.099754px;}
.y1af{bottom:1312.289812px;}
.y218{bottom:1312.801050px;}
.y249{bottom:1312.858500px;}
.ye5{bottom:1312.971000px;}
.y2d9{bottom:1313.473800px;}
.y159{bottom:1316.473261px;}
.y158{bottom:1316.658047px;}
.y1a2{bottom:1316.876670px;}
.y16e{bottom:1322.007582px;}
.y1a3{bottom:1323.232097px;}
.y171{bottom:1324.662779px;}
.y22c{bottom:1326.480000px;}
.y1a1{bottom:1326.633597px;}
.y1b7{bottom:1326.652086px;}
.y157{bottom:1328.059587px;}
.y2d8{bottom:1328.701800px;}
.y156{bottom:1328.721000px;}
.y1b1{bottom:1328.985337px;}
.y248{bottom:1331.088000px;}
.y14c{bottom:1336.606500px;}
.y2ba{bottom:1337.707800px;}
.y1b8{bottom:1338.027000px;}
.y1b4{bottom:1338.342000px;}
.y15a{bottom:1339.663571px;}
.ye3{bottom:1340.074500px;}
.y16d{bottom:1340.296545px;}
.y1ae{bottom:1344.046500px;}
.y172{bottom:1344.106171px;}
.y22b{bottom:1344.709500px;}
.y2d7{bottom:1345.108350px;}
.y1b6{bottom:1345.123013px;}
.y1a0{bottom:1345.597862px;}
.y217{bottom:1345.615500px;}
.y14d{bottom:1346.239545px;}
.y1b3{bottom:1347.030000px;}
.y173{bottom:1347.225575px;}
.y1b0{bottom:1348.647195px;}
.y15b{bottom:1349.007343px;}
.y247{bottom:1349.317500px;}
.y1a4{bottom:1351.222500px;}
.y2b9{bottom:1354.114350px;}
.y1b5{bottom:1354.504099px;}
.y14f{bottom:1355.488860px;}
.y14e{bottom:1357.611138px;}
.y175{bottom:1359.651144px;}
.y174{bottom:1359.876000px;}
.y16c{bottom:1359.970500px;}
.y15c{bottom:1360.373149px;}
.y2d6{bottom:1361.514900px;}
.y19f{bottom:1361.668971px;}
.y216{bottom:1362.022050px;}
.y22a{bottom:1362.939000px;}
.y155{bottom:1365.391166px;}
.y246{bottom:1367.547000px;}
.y1fe{bottom:1369.641000px;}
.y16b{bottom:1370.011500px;}
.y2b8{bottom:1370.519550px;}
.y15d{bottom:1371.339553px;}
.y17b{bottom:1372.351188px;}
.y17a{bottom:1374.411000px;}
.y150{bottom:1375.270914px;}
.y1a5{bottom:1377.808500px;}
.y2d5{bottom:1377.921450px;}
.y215{bottom:1378.428600px;}
.y229{bottom:1381.168500px;}
.y15e{bottom:1382.369254px;}
.y19d{bottom:1383.263098px;}
.y19e{bottom:1383.781974px;}
.y151{bottom:1385.658655px;}
.y245{bottom:1385.776500px;}
.y2b7{bottom:1386.926100px;}
.y15f{bottom:1393.437855px;}
.y19c{bottom:1393.907262px;}
.y2d4{bottom:1394.328000px;}
.y152{bottom:1394.434839px;}
.y214{bottom:1394.835150px;}
.y160{bottom:1397.929118px;}
.y19b{bottom:1397.988608px;}
.y2ab{bottom:1398.915000px;}
.y19a{bottom:1402.815718px;}
.y2b6{bottom:1403.332650px;}
.y244{bottom:1404.006000px;}
.y255{bottom:1407.194700px;}
.y253{bottom:1407.489000px;}
.y1a8{bottom:1408.438522px;}
.y1bb{bottom:1409.816122px;}
.y2d3{bottom:1410.734550px;}
.y213{bottom:1411.241700px;}
.y199{bottom:1411.933868px;}
.y16a{bottom:1411.954500px;}
.y161{bottom:1413.744000px;}
.y153{bottom:1413.984852px;}
.y198{bottom:1418.230638px;}
.y176{bottom:1418.710500px;}
.y2b5{bottom:1419.739200px;}
.y25{bottom:1420.348500px;}
.y243{bottom:1422.235500px;}
.y1a7{bottom:1422.343879px;}
.y1ab{bottom:1422.991023px;}
.y154{bottom:1424.639247px;}
.y197{bottom:1425.154762px;}
.y196{bottom:1426.527538px;}
.y2d2{bottom:1427.141100px;}
.y212{bottom:1427.648250px;}
.y228{bottom:1428.151200px;}
.y162{bottom:1434.544500px;}
.y1ad{bottom:1435.171500px;}
.y1aa{bottom:1435.362574px;}
.y2b4{bottom:1436.145750px;}
.y1a6{bottom:1436.602500px;}
.y242{bottom:1440.466500px;}
.y178{bottom:1440.479510px;}
.y195{bottom:1442.214360px;}
.y2d1{bottom:1443.547650px;}
.y211{bottom:1444.054800px;}
.y1ac{bottom:1446.146045px;}
.y177{bottom:1446.814526px;}
.y194{bottom:1447.657949px;}
.y1a9{bottom:1451.566500px;}
.y193{bottom:1451.995979px;}
.y2b3{bottom:1452.552300px;}
.y192{bottom:1454.104814px;}
.y21{bottom:1458.562500px;}
.y241{bottom:1458.696000px;}
.y2d0{bottom:1459.954200px;}
.y179{bottom:1460.759436px;}
.y191{bottom:1461.690266px;}
.y163{bottom:1466.661886px;}
.y190{bottom:1467.688470px;}
.y2b2{bottom:1468.958850px;}
.y18f{bottom:1474.621585px;}
.y1be{bottom:1475.260626px;}
.y2cf{bottom:1476.360750px;}
.y210{bottom:1476.867900px;}
.y240{bottom:1476.925500px;}
.y18e{bottom:1482.222221px;}
.y2b1{bottom:1485.365400px;}
.y18d{bottom:1485.502945px;}
.y164{bottom:1491.578969px;}
.y1ba{bottom:1491.989045px;}
.y18c{bottom:1492.519617px;}
.y2ce{bottom:1492.767300px;}
.y20f{bottom:1493.274450px;}
.yd9{bottom:1493.673000px;}
.y23f{bottom:1495.155000px;}
.y17f{bottom:1496.227500px;}
.y180{bottom:1498.132081px;}
.y18b{bottom:1499.280131px;}
.y2b0{bottom:1501.771950px;}
.y17e{bottom:1502.631000px;}
.y18a{bottom:1507.445995px;}
.y2cd{bottom:1509.173850px;}
.y20e{bottom:1509.681000px;}
.y189{bottom:1511.272616px;}
.y23e{bottom:1513.384500px;}
.y188{bottom:1517.778000px;}
.y17d{bottom:1518.078000px;}
.y2af{bottom:1518.178500px;}
.yd7{bottom:1524.993000px;}
.y2cc{bottom:1525.580400px;}
.y165{bottom:1526.763000px;}
.y17c{bottom:1530.537000px;}
.y23d{bottom:1531.614000px;}
.y92{bottom:1531.738500px;}
.y187{bottom:1537.992703px;}
.y2cb{bottom:1541.986950px;}
.y20d{bottom:1542.495450px;}
.ye2{bottom:1542.601500px;}
.y166{bottom:1545.026731px;}
.y186{bottom:1545.210447px;}
.yd6{bottom:1546.998000px;}
.yd8{bottom:1548.798000px;}
.y23c{bottom:1549.843500px;}
.y1bc{bottom:1552.338140px;}
.y185{bottom:1555.328098px;}
.y1b9{bottom:1557.450149px;}
.y2ca{bottom:1558.393500px;}
.y20c{bottom:1558.902000px;}
.y167{bottom:1563.845259px;}
.y184{bottom:1567.489739px;}
.y23b{bottom:1568.073000px;}
.y224{bottom:1568.281500px;}
.y2ad{bottom:1573.621200px;}
.y1bd{bottom:1574.011522px;}
.y2c9{bottom:1574.800050px;}
.yf1{bottom:1577.517000px;}
.y183{bottom:1579.310927px;}
.y168{bottom:1582.761554px;}
.y23a{bottom:1586.302500px;}
.y234{bottom:1589.668500px;}
.y182{bottom:1589.966943px;}
.y2c8{bottom:1591.206600px;}
.y20b{bottom:1591.716450px;}
.y4b{bottom:1600.597534px;}
.y169{bottom:1601.001194px;}
.y237{bottom:1604.596500px;}
.y21e{bottom:1605.265500px;}
.y4a{bottom:1605.973500px;}
.y2c7{bottom:1607.613150px;}
.y20a{bottom:1608.123000px;}
.y74{bottom:1608.316500px;}
.y73{bottom:1609.870500px;}
.y181{bottom:1610.796000px;}
.yf5{bottom:1611.228450px;}
.y20{bottom:1611.871500px;}
.y220{bottom:1618.948500px;}
.y24{bottom:1621.488000px;}
.y2c6{bottom:1624.019700px;}
.yf4{bottom:1627.635000px;}
.y1f{bottom:1628.278050px;}
.y49{bottom:1637.136000px;}
.y203{bottom:1639.314900px;}
.y2c5{bottom:1640.426250px;}
.y23{bottom:1641.479550px;}
.yf3{bottom:1644.041550px;}
.yf6{bottom:1644.042900px;}
.y1e{bottom:1644.684600px;}
.y1cf{bottom:1646.682150px;}
.y1ce{bottom:1646.690250px;}
.y222{bottom:1648.016100px;}
.y1ff{bottom:1648.337591px;}
.y1c4{bottom:1651.521000px;}
.y2c4{bottom:1656.832800px;}
.y1c5{bottom:1658.048700px;}
.y1c0{bottom:1665.603324px;}
.y28{bottom:1666.380600px;}
.y21d{bottom:1673.080800px;}
.y2c3{bottom:1673.239350px;}
.y223{bottom:1682.059950px;}
.y93{bottom:1683.019350px;}
.y72{bottom:1683.336750px;}
.yf2{bottom:1685.020350px;}
.y330{bottom:1689.347100px;}
.y2c2{bottom:1689.645900px;}
.y1{bottom:1690.378800px;}
.y22{bottom:1690.642500px;}
.y205{bottom:1694.046000px;}
.y1d1{bottom:1697.727600px;}
.y2bb{bottom:1704.233850px;}
.y2c1{bottom:1706.052450px;}
.y2be{bottom:1722.490350px;}
.h60{height:7.891260px;}
.h6{height:13.046544px;}
.hc{height:17.265456px;}
.h55{height:18.667547px;}
.h57{height:18.686001px;}
.h5b{height:18.696544px;}
.h58{height:18.696913px;}
.h5e{height:18.701076px;}
.h54{height:18.702067px;}
.h59{height:18.703712px;}
.h51{height:18.705875px;}
.h53{height:18.705903px;}
.h5a{height:18.706307px;}
.h56{height:18.706385px;}
.h5d{height:18.707875px;}
.h61{height:18.712408px;}
.h3d{height:18.799205px;}
.h3a{height:18.810598px;}
.h3c{height:18.812877px;}
.h49{height:18.824361px;}
.h3e{height:18.831014px;}
.h4d{height:18.845652px;}
.h4c{height:18.845707px;}
.h3f{height:18.847178px;}
.h39{height:18.847792px;}
.h4e{height:18.848171px;}
.h48{height:18.849460px;}
.h41{height:18.850272px;}
.h36{height:18.853309px;}
.h4a{height:18.854023px;}
.h32{height:18.859458px;}
.h35{height:18.864736px;}
.h40{height:18.866255px;}
.h33{height:18.866316px;}
.h34{height:18.869306px;}
.h37{height:18.871591px;}
.h50{height:18.873934px;}
.h45{height:18.880399px;}
.h47{height:18.881368px;}
.h44{height:18.882688px;}
.h38{height:18.883018px;}
.h4b{height:18.885918px;}
.h46{height:18.885941px;}
.h4f{height:18.887658px;}
.h43{height:18.889553px;}
.h42{height:18.894131px;}
.h3b{height:19.473697px;}
.h5f{height:25.894147px;}
.h64{height:29.700000px;}
.h52{height:30.224160px;}
.h10{height:30.422070px;}
.h72{height:33.264000px;}
.h5c{height:36.760804px;}
.h71{height:36.960000px;}
.h23{height:38.174400px;}
.h20{height:38.342700px;}
.h25{height:39.204000px;}
.h63{height:40.480440px;}
.hf{height:41.399358px;}
.he{height:41.441400px;}
.h62{height:41.543502px;}
.hd{height:41.627586px;}
.h69{height:42.042000px;}
.h27{height:44.282700px;}
.h70{height:44.352000px;}
.h30{height:46.153800px;}
.h2d{height:46.193400px;}
.h2a{height:46.213200px;}
.h19{height:46.257750px;}
.h1a{height:46.263195px;}
.h1b{height:46.266039px;}
.h24{height:46.490550px;}
.h21{height:46.678500px;}
.h6c{height:47.333286px;}
.h2{height:48.048000px;}
.h2c{height:50.224824px;}
.h67{height:51.495444px;}
.h6a{height:51.556704px;}
.h66{height:51.927876px;}
.h65{height:52.924872px;}
.h68{height:53.322000px;}
.h17{height:53.447394px;}
.h73{height:53.561508px;}
.h3{height:54.054000px;}
.h15{height:54.318264px;}
.h1e{height:54.648000px;}
.h1d{height:59.400000px;}
.h4{height:60.058200px;}
.h5{height:60.058800px;}
.h7{height:60.060000px;}
.ha{height:60.064200px;}
.h9{height:61.699200px;}
.h74{height:64.270206px;}
.h13{height:65.134800px;}
.h6e{height:66.066000px;}
.h1f{height:68.904000px;}
.h8{height:72.072000px;}
.h12{height:75.558000px;}
.h26{height:76.373550px;}
.hb{height:77.436000px;}
.h22{height:79.434000px;}
.h6d{height:79.833600px;}
.h16{height:81.432000px;}
.h6b{height:81.530400px;}
.h29{height:84.026250px;}
.h1{height:84.084000px;}
.h75{height:85.175680px;}
.h31{height:91.856772px;}
.h2e{height:91.927206px;}
.h1c{height:92.051820px;}
.h76{height:94.075200px;}
.h11{height:110.640600px;}
.h14{height:117.833400px;}
.h6f{height:280.275996px;}
.h2f{height:614.605500px;}
.h28{height:871.273500px;}
.h2b{height:883.576500px;}
.h18{height:894.997500px;}
.h0{height:1786.500000px;}
.w1{width:544.132500px;}
.w2{width:558.492000px;}
.w3{width:558.583500px;}
.w4{width:558.660000px;}
.w0{width:2526.000000px;}
.x0{left:0.000000px;}
.x58{left:1.500000px;}
.x73{left:9.146422px;}
.x5a{left:24.418500px;}
.x6c{left:30.802500px;}
.x123{left:43.623000px;}
.x59{left:47.338627px;}
.x33{left:53.654700px;}
.x32{left:56.964750px;}
.x11{left:62.507250px;}
.x68{left:66.879600px;}
.xfe{left:68.265450px;}
.x23{left:71.349209px;}
.x6a{left:73.004550px;}
.x13{left:74.148900px;}
.x12{left:76.148400px;}
.x5e{left:78.313500px;}
.x24{left:81.191714px;}
.x22{left:82.390650px;}
.x71{left:83.803500px;}
.x61{left:85.056300px;}
.xfc{left:87.664500px;}
.x127{left:91.585650px;}
.x3c{left:99.169800px;}
.x72{left:102.168731px;}
.x74{left:109.514850px;}
.x76{left:112.063500px;}
.x5b{left:114.289800px;}
.x75{left:120.983250px;}
.x16{left:124.846650px;}
.x18{left:125.873400px;}
.x77{left:128.629200px;}
.x124{left:134.811000px;}
.x78{left:137.548950px;}
.x102{left:138.994650px;}
.x31{left:140.159700px;}
.x110{left:143.741100px;}
.x4{left:147.960300px;}
.xff{left:156.054000px;}
.x111{left:164.128500px;}
.x10f{left:170.164500px;}
.x125{left:176.058000px;}
.x5f{left:230.610000px;}
.x2{left:237.931500px;}
.x5d{left:249.688500px;}
.x126{left:252.457200px;}
.x60{left:263.887520px;}
.x115{left:269.138100px;}
.x3e{left:278.947500px;}
.x3{left:292.571100px;}
.xf2{left:300.069000px;}
.x112{left:303.371100px;}
.x117{left:305.521950px;}
.x100{left:317.620200px;}
.xed{left:369.823650px;}
.xea{left:372.357000px;}
.xe6{left:385.743000px;}
.x5{left:387.325500px;}
.xf{left:395.713500px;}
.x5c{left:401.638500px;}
.x4e{left:431.377350px;}
.x4d{left:433.333500px;}
.x4f{left:436.674300px;}
.x1c{left:438.021000px;}
.x3b{left:450.109500px;}
.x34{left:454.187550px;}
.x101{left:469.905000px;}
.x69{left:500.417250px;}
.xdd{left:512.433000px;}
.xe{left:515.395800px;}
.xa{left:601.203150px;}
.xfb{left:602.811600px;}
.xb{left:604.677000px;}
.xe7{left:616.462500px;}
.x6{left:617.829000px;}
.x45{left:649.058100px;}
.x3f{left:651.129000px;}
.x44{left:652.438500px;}
.x6b{left:665.881500px;}
.x6e{left:675.025500px;}
.x6f{left:696.684000px;}
.x70{left:719.617808px;}
.x21{left:747.370500px;}
.x6d{left:775.677000px;}
.x35{left:783.247350px;}
.xf7{left:786.441000px;}
.x20{left:794.965500px;}
.xf9{left:796.774500px;}
.xf5{left:840.480000px;}
.xf4{left:844.845000px;}
.x62{left:853.411500px;}
.x103{left:868.185000px;}
.x104{left:869.293500px;}
.x105{left:870.402000px;}
.x30{left:879.646500px;}
.xe1{left:882.829500px;}
.x64{left:896.929500px;}
.xe4{left:900.121500px;}
.x63{left:901.249500px;}
.x65{left:926.449500px;}
.x41{left:948.616350px;}
.x4c{left:995.187000px;}
.x3a{left:1001.874000px;}
.xf3{left:1021.821000px;}
.x66{left:1038.186007px;}
.xf8{left:1067.200500px;}
.xfd{left:1105.755000px;}
.x36{left:1108.378650px;}
.x128{left:1130.676000px;}
.x1{left:1147.003500px;}
.x10{left:1149.774000px;}
.xeb{left:1170.024150px;}
.x1e{left:1184.278500px;}
.x1f{left:1185.985500px;}
.xee{left:1191.613500px;}
.xec{left:1192.624350px;}
.xe8{left:1194.064500px;}
.x2f{left:1216.598867px;}
.x2d{left:1250.125500px;}
.x57{left:1257.157500px;}
.x2e{left:1260.200748px;}
.xc{left:1287.355500px;}
.x8{left:1289.034900px;}
.x7{left:1290.906000px;}
.x43{left:1311.597600px;}
.xe5{left:1319.781000px;}
.x50{left:1323.837600px;}
.x51{left:1328.042850px;}
.xef{left:1331.428500px;}
.x52{left:1336.552500px;}
.x54{left:1338.117000px;}
.x55{left:1341.375900px;}
.x53{left:1342.542000px;}
.x4a{left:1434.815700px;}
.x4b{left:1438.074600px;}
.x37{left:1455.971250px;}
.x10d{left:1488.437850px;}
.x10e{left:1491.052350px;}
.x106{left:1494.355500px;}
.x107{left:1495.464000px;}
.x108{left:1496.571000px;}
.x67{left:1513.575000px;}
.xfa{left:1534.965000px;}
.x3d{left:1556.896650px;}
.x11b{left:1636.155000px;}
.x120{left:1638.420000px;}
.x114{left:1639.515000px;}
.x11c{left:1645.050000px;}
.x17{left:1651.095000px;}
.x19{left:1652.115000px;}
.x40{left:1659.149700px;}
.x25{left:1662.975000px;}
.x11e{left:1669.890000px;}
.x116{left:1679.790900px;}
.x121{left:1680.900600px;}
.x113{left:1686.525000px;}
.xe3{left:1708.155000px;}
.xe2{left:1717.784850px;}
.x29{left:1726.830447px;}
.x28{left:1746.930000px;}
.x118{left:1765.920000px;}
.x11a{left:1771.440688px;}
.x122{left:1774.200000px;}
.x38{left:1778.596950px;}
.x11f{left:1780.455000px;}
.x109{left:1784.159850px;}
.x10c{left:1788.479850px;}
.x10a{left:1789.815000px;}
.x26{left:1791.150330px;}
.xd7{left:1794.630086px;}
.x79{left:1800.060000px;}
.x119{left:1806.345294px;}
.x80{left:1809.195254px;}
.xd6{left:1815.540000px;}
.x86{left:1822.966164px;}
.x7a{left:1825.770150px;}
.x7c{left:1828.320000px;}
.x27{left:1831.095000px;}
.x7b{left:1837.245000px;}
.x7d{left:1844.880000px;}
.x7e{left:1853.805000px;}
.x85{left:1860.885034px;}
.x10b{left:1870.979700px;}
.x1a{left:1875.540000px;}
.x84{left:1878.134701px;}
.x49{left:1881.270150px;}
.x1b{left:1882.275000px;}
.x96{left:1884.494001px;}
.x94{left:1888.664699px;}
.x87{left:1890.211310px;}
.x95{left:1898.159330px;}
.x83{left:1900.950106px;}
.x93{left:1902.390077px;}
.xd{left:1904.775300px;}
.x7f{left:1909.875000px;}
.x82{left:1912.619642px;}
.x92{left:1919.610000px;}
.x9{left:1923.629400px;}
.x8f{left:1927.169954px;}
.x91{left:1929.479850px;}
.x90{left:1933.365107px;}
.x81{left:1937.865000px;}
.x8e{left:1940.565045px;}
.xd8{left:1942.964588px;}
.x88{left:1950.885000px;}
.x8d{left:1953.674662px;}
.x89{left:1963.394884px;}
.x47{left:1964.399550px;}
.x8a{left:1966.140082px;}
.x97{left:1969.140000px;}
.xa5{left:1971.119745px;}
.x8c{left:1976.219877px;}
.xa4{left:1977.270159px;}
.x8b{left:1982.399885px;}
.xf0{left:1993.395150px;}
.xf1{left:1994.984850px;}
.x98{left:2002.590150px;}
.xa3{left:2006.850000px;}
.x99{left:2013.270150px;}
.x15{left:2018.415000px;}
.xda{left:2019.973818px;}
.xe9{left:2021.294400px;}
.x9a{left:2022.690361px;}
.xa2{left:2023.844707px;}
.xd9{left:2026.199056px;}
.xa1{left:2036.775000px;}
.xa0{left:2042.866011px;}
.xa8{left:2045.205000px;}
.x9b{left:2050.275259px;}
.x56{left:2054.850000px;}
.xa9{left:2056.440000px;}
.x9f{left:2060.550621px;}
.x9c{left:2068.140000px;}
.xa7{left:2071.605159px;}
.x9d{left:2078.684824px;}
.x9e{left:2082.450306px;}
.xa6{left:2087.955000px;}
.xaa{left:2102.910319px;}
.xf6{left:2103.915000px;}
.xc2{left:2107.318536px;}
.x11d{left:2109.360000px;}
.xc1{left:2111.548615px;}
.x1d{left:2112.930000px;}
.xbf{left:2114.129047px;}
.xdf{left:2117.834100px;}
.x39{left:2119.187100px;}
.xb9{left:2122.184802px;}
.xc0{left:2124.208593px;}
.xde{left:2127.404700px;}
.xbd{left:2129.428759px;}
.xe0{left:2131.110000px;}
.xba{left:2133.104394px;}
.xae{left:2137.425193px;}
.xad{left:2139.465327px;}
.xbb{left:2143.829144px;}
.xb6{left:2147.969731px;}
.xb2{left:2154.135010px;}
.xac{left:2156.085159px;}
.xb7{left:2158.754540px;}
.xab{left:2160.915000px;}
.xb3{left:2163.809959px;}
.xb8{left:2169.209549px;}
.xbe{left:2170.513365px;}
.xb4{left:2173.484780px;}
.xbc{left:2174.713847px;}
.xb0{left:2179.500000px;}
.xdb{left:2183.308484px;}
.xb5{left:2186.144681px;}
.xb1{left:2191.274759px;}
.xaf{left:2196.015191px;}
.xc4{left:2210.880000px;}
.xc3{left:2215.020150px;}
.xdc{left:2253.118171px;}
.xc5{left:2258.835000px;}
.x14{left:2265.750000px;}
.xc6{left:2269.950645px;}
.x2a{left:2284.905000px;}
.xcd{left:2288.099960px;}
.x2b{left:2289.104850px;}
.x2c{left:2290.499400px;}
.xcc{left:2292.705000px;}
.xc7{left:2298.630000px;}
.xc8{left:2302.454602px;}
.xc9{left:2306.414851px;}
.x46{left:2320.050300px;}
.x42{left:2321.160000px;}
.x48{left:2325.104850px;}
.xce{left:2326.874048px;}
.xd0{left:2332.019060px;}
.xcf{left:2334.059082px;}
.xca{left:2349.345096px;}
.xd1{left:2354.280000px;}
.xd2{left:2365.200000px;}
.xcb{left:2386.470000px;}
.xd3{left:2388.480089px;}
.xd4{left:2392.454669px;}
.xd5{left:2394.374504px;}
@media print{
.vf{vertical-align:-36.346667pt;}
.vd{vertical-align:-33.168000pt;}
.v11{vertical-align:-18.848242pt;}
.v16{vertical-align:-13.690957pt;}
.v14{vertical-align:-12.570367pt;}
.v15{vertical-align:-10.133687pt;}
.v18{vertical-align:-7.882667pt;}
.v2{vertical-align:-6.890667pt;}
.v8{vertical-align:-3.941333pt;}
.v12{vertical-align:-2.491094pt;}
.v7{vertical-align:-0.986667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.301333pt;}
.v9{vertical-align:3.297600pt;}
.v13{vertical-align:4.919715pt;}
.v1{vertical-align:6.225067pt;}
.vb{vertical-align:8.320000pt;}
.v1a{vertical-align:9.291322pt;}
.v5{vertical-align:10.517333pt;}
.v1b{vertical-align:11.673600pt;}
.v3{vertical-align:15.445333pt;}
.vc{vertical-align:19.008000pt;}
.v19{vertical-align:22.915200pt;}
.ve{vertical-align:27.386667pt;}
.v17{vertical-align:35.100800pt;}
.v4{vertical-align:50.299200pt;}
.va{vertical-align:56.692800pt;}
.v10{vertical-align:64.160000pt;}
.ls52{letter-spacing:-3.553592pt;}
.ls7b{letter-spacing:-3.473993pt;}
.ls81{letter-spacing:-2.546074pt;}
.ls4a{letter-spacing:-2.262736pt;}
.ls4c{letter-spacing:-2.257752pt;}
.ls4b{letter-spacing:-2.242800pt;}
.ls4d{letter-spacing:-2.212896pt;}
.ls49{letter-spacing:-2.207912pt;}
.ls68{letter-spacing:-2.205786pt;}
.ls69{letter-spacing:-2.185869pt;}
.ls7f{letter-spacing:-2.184932pt;}
.ls50{letter-spacing:-2.182992pt;}
.ls76{letter-spacing:-1.627501pt;}
.ls67{letter-spacing:-1.598323pt;}
.ls65{letter-spacing:-1.274675pt;}
.ls55{letter-spacing:-1.255968pt;}
.ls85{letter-spacing:-1.163635pt;}
.ls5b{letter-spacing:-0.670539pt;}
.ls5c{letter-spacing:-0.039872pt;}
.ls10{letter-spacing:-0.025600pt;}
.ls99{letter-spacing:-0.025219pt;}
.ls9a{letter-spacing:-0.021333pt;}
.ls9c{letter-spacing:-0.019200pt;}
.lsd{letter-spacing:-0.018483pt;}
.ls7{letter-spacing:-0.017067pt;}
.ls61{letter-spacing:-0.016452pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls62{letter-spacing:-0.012339pt;}
.lsc{letter-spacing:-0.011090pt;}
.ls4{letter-spacing:-0.010667pt;}
.ls8c{letter-spacing:-0.010157pt;}
.ls53{letter-spacing:-0.009968pt;}
.ls96{letter-spacing:-0.009600pt;}
.ls63{letter-spacing:-0.009542pt;}
.ls15{letter-spacing:-0.009492pt;}
.lsb{letter-spacing:-0.007393pt;}
.ls14{letter-spacing:-0.006400pt;}
.ls92{letter-spacing:-0.006043pt;}
.ls9f{letter-spacing:-0.005707pt;}
.ls8{letter-spacing:-0.005333pt;}
.lse{letter-spacing:-0.004800pt;}
.ls8d{letter-spacing:-0.004063pt;}
.ls8e{letter-spacing:-0.004061pt;}
.lsf{letter-spacing:-0.003697pt;}
.ls97{letter-spacing:-0.003200pt;}
.lsa{letter-spacing:-0.001711pt;}
.ls2{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.002011pt;}
.ls91{letter-spacing:0.002015pt;}
.ls28{letter-spacing:0.002026pt;}
.ls95{letter-spacing:0.003733pt;}
.ls8f{letter-spacing:0.004059pt;}
.ls98{letter-spacing:0.004573pt;}
.ls13{letter-spacing:0.004746pt;}
.ls1{letter-spacing:0.004800pt;}
.ls12{letter-spacing:0.004823pt;}
.ls74{letter-spacing:0.004977pt;}
.ls66{letter-spacing:0.004979pt;}
.ls5{letter-spacing:0.005137pt;}
.ls9b{letter-spacing:0.005867pt;}
.ls41{letter-spacing:0.006034pt;}
.ls2f{letter-spacing:0.006079pt;}
.ls1f{letter-spacing:0.006096pt;}
.ls93{letter-spacing:0.007467pt;}
.ls47{letter-spacing:0.008053pt;}
.ls2b{letter-spacing:0.008106pt;}
.ls40{letter-spacing:0.008132pt;}
.ls0{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.009647pt;}
.ls46{letter-spacing:0.010067pt;}
.ls2c{letter-spacing:0.010132pt;}
.ls8b{letter-spacing:0.010160pt;}
.ls38{letter-spacing:0.010171pt;}
.ls94{letter-spacing:0.011200pt;}
.ls45{letter-spacing:0.012080pt;}
.ls26{letter-spacing:0.012153pt;}
.ls3d{letter-spacing:0.012167pt;}
.ls31{letter-spacing:0.012169pt;}
.ls90{letter-spacing:0.012206pt;}
.ls18{letter-spacing:0.012394pt;}
.ls9e{letter-spacing:0.012800pt;}
.ls2a{letter-spacing:0.014179pt;}
.ls2e{letter-spacing:0.014185pt;}
.ls35{letter-spacing:0.014240pt;}
.ls9{letter-spacing:0.014705pt;}
.ls29{letter-spacing:0.016204pt;}
.ls17{letter-spacing:0.016525pt;}
.ls25{letter-spacing:0.018230pt;}
.ls3e{letter-spacing:0.018237pt;}
.ls3c{letter-spacing:0.018250pt;}
.ls3b{letter-spacing:0.020282pt;}
.ls36{letter-spacing:0.020343pt;}
.ls37{letter-spacing:0.022377pt;}
.ls30{letter-spacing:0.024339pt;}
.ls20{letter-spacing:0.024376pt;}
.ls32{letter-spacing:0.026384pt;}
.ls23{letter-spacing:0.026407pt;}
.ls21{letter-spacing:0.032501pt;}
.ls39{letter-spacing:0.032518pt;}
.ls3a{letter-spacing:0.034551pt;}
.ls22{letter-spacing:0.036564pt;}
.ls48{letter-spacing:0.040289pt;}
.ls24{letter-spacing:0.042658pt;}
.ls3f{letter-spacing:0.042694pt;}
.ls1d{letter-spacing:0.303601pt;}
.ls16{letter-spacing:0.862639pt;}
.ls78{letter-spacing:0.875964pt;}
.ls1e{letter-spacing:0.879595pt;}
.ls8a{letter-spacing:0.905050pt;}
.ls58{letter-spacing:0.951944pt;}
.ls57{letter-spacing:0.961912pt;}
.ls59{letter-spacing:0.971880pt;}
.ls6b{letter-spacing:0.995840pt;}
.ls54{letter-spacing:0.996800pt;}
.ls7c{letter-spacing:1.035230pt;}
.ls72{letter-spacing:1.035674pt;}
.ls7e{letter-spacing:1.040207pt;}
.ls89{letter-spacing:1.049261pt;}
.ls86{letter-spacing:1.064179pt;}
.ls83{letter-spacing:1.069152pt;}
.ls9d{letter-spacing:1.156800pt;}
.ls5e{letter-spacing:1.893920pt;}
.ls7d{letter-spacing:1.951010pt;}
.ls82{letter-spacing:1.989120pt;}
.ls6e{letter-spacing:2.165952pt;}
.ls5d{letter-spacing:2.212896pt;}
.ls51{letter-spacing:2.272704pt;}
.ls56{letter-spacing:2.282672pt;}
.ls71{letter-spacing:2.290432pt;}
.ls6c{letter-spacing:2.300390pt;}
.ls7a{letter-spacing:2.309359pt;}
.ls70{letter-spacing:2.310349pt;}
.ls4f{letter-spacing:2.322544pt;}
.ls5a{letter-spacing:2.327528pt;}
.ls73{letter-spacing:2.330266pt;}
.ls6a{letter-spacing:2.335245pt;}
.ls6d{letter-spacing:2.340224pt;}
.ls4e{letter-spacing:2.342480pt;}
.ls79{letter-spacing:2.344198pt;}
.ls6f{letter-spacing:2.355162pt;}
.ls84{letter-spacing:2.411808pt;}
.ls1b{letter-spacing:2.891676pt;}
.ls75{letter-spacing:2.896653pt;}
.ls80{letter-spacing:3.346694pt;}
.ls87{letter-spacing:3.381504pt;}
.ls42{letter-spacing:3.578135pt;}
.ls64{letter-spacing:3.929147pt;}
.ls77{letter-spacing:3.954442pt;}
.ls88{letter-spacing:3.969497pt;}
.ls34{letter-spacing:6.567558pt;}
.ls44{letter-spacing:7.544455pt;}
.ls27{letter-spacing:16.313406pt;}
.ls2d{letter-spacing:22.248663pt;}
.ls33{letter-spacing:33.763256pt;}
.ls1c{letter-spacing:49.596469pt;}
.ls19{letter-spacing:298.026667pt;}
.ls1a{letter-spacing:623.952427pt;}
.ls5f{letter-spacing:1008.378880pt;}
.ls60{letter-spacing:1008.384768pt;}
.ws28{word-spacing:-24.405333pt;}
.ws2a{word-spacing:-24.404718pt;}
.ws27{word-spacing:-24.389680pt;}
.ws9f{word-spacing:-21.868800pt;}
.wsa0{word-spacing:-21.862400pt;}
.ws22{word-spacing:-19.808075pt;}
.ws4{word-spacing:-18.757333pt;}
.ws25{word-spacing:-18.597088pt;}
.wsc{word-spacing:-16.905600pt;}
.wsd{word-spacing:-16.900800pt;}
.ws13{word-spacing:-16.896000pt;}
.ws9c{word-spacing:-14.770045pt;}
.ws29{word-spacing:-14.585222pt;}
.ws92{word-spacing:-13.152533pt;}
.ws93{word-spacing:-13.145067pt;}
.ws24{word-spacing:-9.279078pt;}
.wsb4{word-spacing:-7.466667pt;}
.wsac{word-spacing:-7.461333pt;}
.wsa7{word-spacing:-7.301333pt;}
.wsc8{word-spacing:-6.811200pt;}
.wsc2{word-spacing:-6.115200pt;}
.wsa9{word-spacing:-5.909333pt;}
.wsab{word-spacing:-5.776000pt;}
.wsb{word-spacing:-4.754684pt;}
.ws2b{word-spacing:-4.602470pt;}
.ws37{word-spacing:-4.598753pt;}
.ws35{word-spacing:-4.597409pt;}
.ws3b{word-spacing:-4.594721pt;}
.ws36{word-spacing:-4.593191pt;}
.ws2c{word-spacing:-4.592310pt;}
.ws2d{word-spacing:-4.590813pt;}
.ws33{word-spacing:-4.590796pt;}
.ws3a{word-spacing:-4.587893pt;}
.ws2e{word-spacing:-4.586750pt;}
.ws34{word-spacing:-4.586737pt;}
.ws39{word-spacing:-4.585590pt;}
.ws2f{word-spacing:-4.585407pt;}
.ws32{word-spacing:-4.583764pt;}
.ws38{word-spacing:-4.582851pt;}
.ws31{word-spacing:-4.579832pt;}
.ws30{word-spacing:-4.577638pt;}
.ws45{word-spacing:-4.560139pt;}
.ws3e{word-spacing:-4.554919pt;}
.ws46{word-spacing:-4.552730pt;}
.ws47{word-spacing:-4.552640pt;}
.ws4f{word-spacing:-4.550392pt;}
.ws44{word-spacing:-4.550073pt;}
.ws4b{word-spacing:-4.546597pt;}
.ws43{word-spacing:-4.545579pt;}
.ws7e{word-spacing:-4.494291pt;}
.ws71{word-spacing:-4.481280pt;}
.ws5b{word-spacing:-4.420808pt;}
.wsbe{word-spacing:-4.372800pt;}
.ws85{word-spacing:-4.167206pt;}
.ws81{word-spacing:-4.135942pt;}
.ws5d{word-spacing:-4.101832pt;}
.wsb8{word-spacing:-3.700800pt;}
.wsc6{word-spacing:-3.657600pt;}
.wsc7{word-spacing:-3.456000pt;}
.wsb2{word-spacing:-3.402667pt;}
.ws8b{word-spacing:-3.242266pt;}
.ws89{word-spacing:-3.227347pt;}
.ws90{word-spacing:-3.222374pt;}
.ws6b{word-spacing:-3.191667pt;}
.ws58{word-spacing:-3.174808pt;}
.ws57{word-spacing:-3.154872pt;}
.ws56{word-spacing:-3.144904pt;}
.ws91{word-spacing:-3.078163pt;}
.ws7d{word-spacing:-3.050942pt;}
.ws7c{word-spacing:-2.931492pt;}
.wsbb{word-spacing:-2.558400pt;}
.wsa5{word-spacing:-2.538667pt;}
.ws68{word-spacing:-2.195827pt;}
.ws65{word-spacing:-2.190848pt;}
.ws7b{word-spacing:-2.184932pt;}
.ws8f{word-spacing:-2.183059pt;}
.ws8e{word-spacing:-2.173114pt;}
.ws4a{word-spacing:-1.921535pt;}
.wsaa{word-spacing:-1.824000pt;}
.ws42{word-spacing:-1.495465pt;}
.ws40{word-spacing:-1.179039pt;}
.wsaf{word-spacing:-1.098667pt;}
.ws8c{word-spacing:-1.019424pt;}
.ws5e{word-spacing:-0.904733pt;}
.ws77{word-spacing:-0.552454pt;}
.ws1e{word-spacing:-0.106116pt;}
.ws9b{word-spacing:-0.074667pt;}
.ws1d{word-spacing:-0.067200pt;}
.ws87{word-spacing:-0.049728pt;}
.ws97{word-spacing:-0.048533pt;}
.ws1f{word-spacing:-0.038400pt;}
.ws99{word-spacing:-0.033600pt;}
.ws9a{word-spacing:-0.026133pt;}
.wsce{word-spacing:-0.025600pt;}
.ws73{word-spacing:-0.019917pt;}
.ws19{word-spacing:-0.019200pt;}
.ws59{word-spacing:-0.014952pt;}
.ws3{word-spacing:-0.014400pt;}
.wscb{word-spacing:-0.012800pt;}
.wsae{word-spacing:-0.010667pt;}
.ws50{word-spacing:-0.009968pt;}
.wsc0{word-spacing:-0.009600pt;}
.ws60{word-spacing:-0.008262pt;}
.ws14{word-spacing:-0.007393pt;}
.wsca{word-spacing:-0.006400pt;}
.wsa1{word-spacing:-0.005867pt;}
.wscf{word-spacing:-0.005707pt;}
.ws9{word-spacing:-0.005333pt;}
.ws6a{word-spacing:-0.004979pt;}
.ws82{word-spacing:-0.004977pt;}
.ws2{word-spacing:-0.004800pt;}
.ws5f{word-spacing:-0.004131pt;}
.ws96{word-spacing:-0.003733pt;}
.ws1a{word-spacing:-0.003697pt;}
.ws16{word-spacing:-0.003680pt;}
.ws5{word-spacing:-0.002569pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.003697pt;}
.ws98{word-spacing:0.003733pt;}
.ws1{word-spacing:0.004267pt;}
.ws62{word-spacing:0.004771pt;}
.ws1c{word-spacing:0.004800pt;}
.ws83{word-spacing:0.004977pt;}
.ws5c{word-spacing:0.004984pt;}
.ws7{word-spacing:0.005333pt;}
.ws94{word-spacing:0.006400pt;}
.ws1b{word-spacing:0.007393pt;}
.ws61{word-spacing:0.008226pt;}
.ws6{word-spacing:0.008533pt;}
.ws95{word-spacing:0.009600pt;}
.wsa{word-spacing:0.010667pt;}
.ws18{word-spacing:0.011090pt;}
.ws9d{word-spacing:0.012610pt;}
.wsc9{word-spacing:0.012800pt;}
.ws21{word-spacing:0.014238pt;}
.ws69{word-spacing:0.014938pt;}
.wscd{word-spacing:0.019200pt;}
.ws6e{word-spacing:0.019917pt;}
.ws4e{word-spacing:0.019936pt;}
.ws8{word-spacing:0.021333pt;}
.wsad{word-spacing:0.026667pt;}
.ws74{word-spacing:0.029875pt;}
.ws6c{word-spacing:0.034854pt;}
.wscc{word-spacing:0.038400pt;}
.ws6f{word-spacing:0.039834pt;}
.ws51{word-spacing:0.039872pt;}
.ws15{word-spacing:0.044358pt;}
.ws75{word-spacing:0.054771pt;}
.ws4c{word-spacing:0.054824pt;}
.ws4d{word-spacing:0.064792pt;}
.ws64{word-spacing:0.071568pt;}
.ws6d{word-spacing:0.169293pt;}
.ws48{word-spacing:0.610376pt;}
.ws63{word-spacing:0.815875pt;}
.wsba{word-spacing:1.228800pt;}
.ws86{word-spacing:1.238227pt;}
.wsb7{word-spacing:1.257600pt;}
.ws7f{word-spacing:1.289060pt;}
.ws72{word-spacing:1.299571pt;}
.ws80{word-spacing:1.303991pt;}
.ws54{word-spacing:1.335712pt;}
.ws76{word-spacing:2.334244pt;}
.ws67{word-spacing:2.335245pt;}
.ws78{word-spacing:2.339221pt;}
.ws79{word-spacing:2.344198pt;}
.ws5a{word-spacing:2.357432pt;}
.ws8d{word-spacing:2.362080pt;}
.ws53{word-spacing:2.367400pt;}
.wsa4{word-spacing:2.794667pt;}
.wsc4{word-spacing:3.441600pt;}
.ws8a{word-spacing:3.515770pt;}
.ws55{word-spacing:3.568544pt;}
.ws66{word-spacing:3.609920pt;}
.ws7a{word-spacing:3.966722pt;}
.wsc1{word-spacing:4.272000pt;}
.ws70{word-spacing:4.546010pt;}
.ws84{word-spacing:4.908154pt;}
.ws52{word-spacing:5.866168pt;}
.wsb1{word-spacing:6.405333pt;}
.wsb5{word-spacing:8.270400pt;}
.wsb3{word-spacing:9.141333pt;}
.wsc5{word-spacing:10.243200pt;}
.wsa2{word-spacing:10.965333pt;}
.wsa8{word-spacing:12.117333pt;}
.wsc3{word-spacing:14.880000pt;}
.wsb6{word-spacing:16.017600pt;}
.wsb9{word-spacing:16.228800pt;}
.ws49{word-spacing:17.819758pt;}
.wsa6{word-spacing:20.085333pt;}
.wsa3{word-spacing:20.272000pt;}
.ws3c{word-spacing:27.903875pt;}
.wsb0{word-spacing:30.853333pt;}
.wsbc{word-spacing:32.265600pt;}
.wsbd{word-spacing:32.592000pt;}
.wsbf{word-spacing:33.729600pt;}
.ws41{word-spacing:40.560948pt;}
.ws3d{word-spacing:45.722450pt;}
.ws3f{word-spacing:88.835026pt;}
.ws23{word-spacing:212.667889pt;}
.ws88{word-spacing:428.337101pt;}
.wsf{word-spacing:713.515200pt;}
.ws11{word-spacing:727.483200pt;}
.ws10{word-spacing:898.320000pt;}
.ws9e{word-spacing:1216.896000pt;}
.wse{word-spacing:1476.144000pt;}
.ws20{word-spacing:2034.796800pt;}
.ws12{word-spacing:3290.688000pt;}
.ws26{word-spacing:4360.132800pt;}
._37{margin-left:-4109.611200pt;}
._13{margin-left:-2802.676800pt;}
._32{margin-left:-429.852145pt;}
._31{margin-left:-426.501347pt;}
._30{margin-left:-425.587228pt;}
._26{margin-left:-19.917412pt;}
._1a{margin-left:-16.568416pt;}
._2{margin-left:-7.608000pt;}
._25{margin-left:-6.701133pt;}
._6{margin-left:-5.706667pt;}
._3{margin-left:-3.981333pt;}
._1{margin-left:-2.323200pt;}
._0{margin-left:-1.092267pt;}
._18{width:1.082299pt;}
._16{width:2.262736pt;}
._15{width:3.274488pt;}
._14{width:4.520488pt;}
._17{width:5.741568pt;}
._19{width:7.410312pt;}
._2f{width:8.971545pt;}
._1f{width:10.680928pt;}
._28{width:68.163642pt;}
._2d{width:94.837151pt;}
._29{width:108.661393pt;}
._1e{width:110.636738pt;}
._1d{width:118.421573pt;}
._2a{width:130.783437pt;}
._1c{width:134.479952pt;}
._2c{width:144.540581pt;}
._2b{width:145.768246pt;}
._2e{width:158.387286pt;}
._4{width:189.742933pt;}
._e{width:211.632000pt;}
._5{width:221.973333pt;}
._22{width:267.663121pt;}
._3d{width:297.226667pt;}
._23{width:308.206400pt;}
._d{width:402.553600pt;}
._46{width:406.009600pt;}
._42{width:423.692800pt;}
._24{width:426.290319pt;}
._a{width:453.201600pt;}
._43{width:455.462400pt;}
._f{width:472.913067pt;}
._c{width:483.048533pt;}
._27{width:498.388525pt;}
._40{width:523.974400pt;}
._45{width:534.150454pt;}
._10{width:590.003733pt;}
._9{width:655.846400pt;}
._1b{width:730.501175pt;}
._12{width:750.163200pt;}
._8{width:764.229333pt;}
._21{width:788.320533pt;}
._7{width:883.069867pt;}
._36{width:893.666133pt;}
._3e{width:950.406400pt;}
._39{width:958.681600pt;}
._35{width:970.082133pt;}
._3b{width:1001.932800pt;}
._3c{width:1048.459200pt;}
._44{width:1120.864000pt;}
._3f{width:1137.561600pt;}
._3a{width:1147.689600pt;}
._47{width:1319.264000pt;}
._33{width:1523.558400pt;}
._20{width:1735.996800pt;}
._b{width:1754.852267pt;}
._38{width:2146.752000pt;}
._34{width:2509.643733pt;}
._11{width:2562.247467pt;}
._41{width:2640.736000pt;}
._48{width:3010.995200pt;}
.fs37{font-size:8.502367pt;}
.fs4{font-size:12.842667pt;}
.fs6{font-size:17.109333pt;}
.fs32{font-size:20.113182pt;}
.fs33{font-size:20.133065pt;}
.fs36{font-size:20.144424pt;}
.fs34{font-size:20.144822pt;}
.fs31{font-size:20.150375pt;}
.fs2f{font-size:20.154478pt;}
.fs30{font-size:20.154508pt;}
.fs35{font-size:20.154944pt;}
.fs24{font-size:20.255035pt;}
.fs2c{font-size:20.263325pt;}
.fs25{font-size:20.264745pt;}
.fs2b{font-size:20.278101pt;}
.fs26{font-size:20.282139pt;}
.fs27{font-size:20.295297pt;}
.fs2d{font-size:20.300412pt;}
.fs23{font-size:20.307385pt;}
.fs22{font-size:20.313330pt;}
.fs21{font-size:20.319955pt;}
.fs29{font-size:20.323853pt;}
.fs2e{font-size:20.330624pt;}
.fs28{font-size:20.342518pt;}
.fs2a{font-size:20.348463pt;}
.fs16{font-size:27.141333pt;}
.fs13{font-size:27.253333pt;}
.fsa{font-size:29.946667pt;}
.fs3a{font-size:32.000000pt;}
.fs39{font-size:35.946667pt;}
.fs1e{font-size:36.197333pt;}
.fsf{font-size:36.245333pt;}
.fs9{font-size:36.762667pt;}
.fs8{font-size:36.800000pt;}
.fs38{font-size:36.890667pt;}
.fs7{font-size:36.965333pt;}
.fs3e{font-size:37.333333pt;}
.fs15{font-size:41.130667pt;}
.fs12{font-size:41.312000pt;}
.fs40{font-size:42.032000pt;}
.fs17{font-size:42.240000pt;}
.fs1{font-size:42.666667pt;}
.fs3d{font-size:45.728000pt;}
.fs3f{font-size:45.781333pt;}
.fs3c{font-size:46.112000pt;}
.fs3b{font-size:46.997333pt;}
.fsc{font-size:47.461333pt;}
.fs43{font-size:47.562667pt;}
.fs19{font-size:47.712000pt;}
.fs14{font-size:47.930667pt;}
.fs2{font-size:48.000000pt;}
.fsb{font-size:48.234667pt;}
.fs1f{font-size:49.728000pt;}
.fs1c{font-size:49.770667pt;}
.fs1b{font-size:49.792000pt;}
.fsd{font-size:49.840000pt;}
.fs3{font-size:53.333333pt;}
.fs44{font-size:57.072000pt;}
.fs41{font-size:58.666667pt;}
.fs10{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs11{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.fs18{font-size:82.288000pt;}
.fs20{font-size:90.421333pt;}
.fs1d{font-size:90.490667pt;}
.fs1a{font-size:90.533333pt;}
.fse{font-size:90.613333pt;}
.fs42{font-size:248.885333pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:19.453089pt;}
.yd4{bottom:42.106615pt;}
.yd3{bottom:64.760141pt;}
.yd2{bottom:87.413667pt;}
.y2ac{bottom:106.440400pt;}
.y1b{bottom:109.811867pt;}
.yd1{bottom:111.199807pt;}
.yb4{bottom:112.706667pt;}
.y17{bottom:124.306933pt;}
.y1a{bottom:124.399067pt;}
.y112{bottom:125.200000pt;}
.yd0{bottom:133.853333pt;}
.y1d{bottom:137.053067pt;}
.y19{bottom:138.986267pt;}
.y16{bottom:140.240533pt;}
.yf7{bottom:147.013333pt;}
.y133{bottom:149.145536pt;}
.y1c{bottom:151.639067pt;}
.y207{bottom:152.146667pt;}
.y18{bottom:153.573467pt;}
.y4e{bottom:153.600000pt;}
.y15{bottom:154.813333pt;}
.y1c7{bottom:156.173867pt;}
.ycf{bottom:156.508000pt;}
.y34{bottom:156.666667pt;}
.y1de{bottom:156.706933pt;}
.y1c8{bottom:157.667467pt;}
.y91{bottom:159.186933pt;}
.y8f{bottom:159.867333pt;}
.y1c6{bottom:160.120267pt;}
.y1d9{bottom:161.386667pt;}
.y1fd{bottom:163.413867pt;}
.y209{bottom:163.973333pt;}
.y111{bottom:165.321670pt;}
.y55{bottom:166.067467pt;}
.y1dd{bottom:168.053467pt;}
.y1d8{bottom:172.733200pt;}
.y132{bottom:172.906052pt;}
.y8e{bottom:174.453333pt;}
.y1fc{bottom:174.760400pt;}
.yce{bottom:175.763299pt;}
.y1dc{bottom:179.400000pt;}
.y54{bottom:180.653467pt;}
.y90{bottom:181.133733pt;}
.y1d7{bottom:184.066667pt;}
.y32{bottom:186.119067pt;}
.y208{bottom:187.360000pt;}
.y289{bottom:188.346667pt;}
.y1db{bottom:190.733467pt;}
.y41{bottom:192.266133pt;}
.y110{bottom:193.614730pt;}
.y1f5{bottom:195.161333pt;}
.y131{bottom:195.519355pt;}
.y8d{bottom:195.840933pt;}
.ycd{bottom:196.151597pt;}
.yb3{bottom:199.599600pt;}
.y1fb{bottom:199.653333pt;}
.y2a4{bottom:200.853333pt;}
.y31{bottom:202.039467pt;}
.y1da{bottom:202.080000pt;}
.y53{bottom:205.986667pt;}
.y1f4{bottom:206.507867pt;}
.y40{bottom:206.853333pt;}
.y1fa{bottom:210.999867pt;}
.y2a3{bottom:215.893333pt;}
.y1eb{bottom:216.253733pt;}
.y30{bottom:216.626667pt;}
.y1f3{bottom:217.841333pt;}
.y130{bottom:218.146344pt;}
.ycc{bottom:218.806369pt;}
.y5b{bottom:219.746084pt;}
.y292{bottom:221.040000pt;}
.y1f9{bottom:222.346400pt;}
.y10f{bottom:223.041802pt;}
.y1ea{bottom:227.600267pt;}
.y57{bottom:228.147067pt;}
.yb2{bottom:228.772800pt;}
.y3d{bottom:228.933867pt;}
.y1f2{bottom:229.187867pt;}
.y5a{bottom:230.972456pt;}
.y2a2{bottom:232.093333pt;}
.y291{bottom:237.240000pt;}
.y1e9{bottom:238.946800pt;}
.y12f{bottom:240.773333pt;}
.ycb{bottom:241.459895pt;}
.y1e6{bottom:241.786933pt;}
.y56{bottom:242.734267pt;}
.y3c{bottom:243.506667pt;}
.y2e{bottom:244.213333pt;}
.y1f8{bottom:245.200000pt;}
.y2ae{bottom:246.694000pt;}
.y2a1{bottom:248.293333pt;}
.y1e8{bottom:250.280267pt;}
.y10e{bottom:251.334861pt;}
.y1e5{bottom:253.133467pt;}
.y290{bottom:253.440000pt;}
.y1f7{bottom:256.549333pt;}
.yb1{bottom:257.935200pt;}
.ya3{bottom:258.518400pt;}
.y9f{bottom:260.160000pt;}
.y1e7{bottom:261.629600pt;}
.y12e{bottom:263.393333pt;}
.yca{bottom:264.114667pt;}
.y1e4{bottom:264.477200pt;}
.y2a0{bottom:264.502667pt;}
.y39{bottom:269.228267pt;}
.y28f{bottom:269.646667pt;}
.ya2{bottom:273.102000pt;}
.y52{bottom:279.490770pt;}
.y2c{bottom:279.689333pt;}
.y29f{bottom:280.706667pt;}
.y10d{bottom:280.755709pt;}
.ya0{bottom:282.156000pt;}
.y12d{bottom:282.625349pt;}
.y38{bottom:283.810667pt;}
.y28e{bottom:285.850667pt;}
.yb0{bottom:287.103600pt;}
.yc9{bottom:296.963106pt;}
.ya1{bottom:298.437600pt;}
.y28d{bottom:302.054667pt;}
.y12c{bottom:302.985284pt;}
.y5d{bottom:308.224421pt;}
.y10c{bottom:309.047523pt;}
.y9e{bottom:310.583067pt;}
.y29e{bottom:313.114667pt;}
.yaf{bottom:316.272000pt;}
.y36{bottom:316.398667pt;}
.y28c{bottom:318.258667pt;}
.y5c{bottom:319.392000pt;}
.yc8{bottom:319.616632pt;}
.y2a{bottom:320.086667pt;}
.ya5{bottom:320.601600pt;}
.y9d{bottom:325.166667pt;}
.y12b{bottom:325.607297pt;}
.y32f{bottom:328.076000pt;}
.y29d{bottom:329.318667pt;}
.yae{bottom:330.855600pt;}
.y28b{bottom:334.462667pt;}
.ya4{bottom:335.185200pt;}
.y10b{bottom:338.469616pt;}
.yc7{bottom:342.271404pt;}
.y29c{bottom:345.522667pt;}
.y12a{bottom:348.229309pt;}
.y9c{bottom:349.932060pt;}
.y59{bottom:350.654191pt;}
.y326{bottom:355.678400pt;}
.ya8{bottom:359.043067pt;}
.yad{bottom:360.024000pt;}
.y29b{bottom:361.726667pt;}
.y134{bottom:364.302667pt;}
.y9b{bottom:364.352000pt;}
.yc6{bottom:364.924930pt;}
.y10a{bottom:366.761430pt;}
.y28a{bottom:370.037867pt;}
.y129{bottom:370.851321pt;}
.ya7{bottom:373.626667pt;}
.yac{bottom:374.607600pt;}
.y325{bottom:375.123200pt;}
.y32d{bottom:375.126400pt;}
.y202{bottom:376.510782pt;}
.y29a{bottom:377.930667pt;}
.y14a{bottom:382.588911pt;}
.y5{bottom:384.742400pt;}
.y123{bottom:384.778682pt;}
.yc5{bottom:387.579702pt;}
.y9a{bottom:388.533467pt;}
.y5e{bottom:392.645333pt;}
.y128{bottom:393.473333pt;}
.y299{bottom:394.134667pt;}
.y324{bottom:394.568000pt;}
.y32c{bottom:394.569600pt;}
.y109{bottom:395.054915pt;}
.ya6{bottom:396.914667pt;}
.y99{bottom:403.117067pt;}
.yab{bottom:403.776000pt;}
.yc4{bottom:410.233228pt;}
.y298{bottom:410.338667pt;}
.y323{bottom:414.012800pt;}
.y122{bottom:414.188169pt;}
.y149{bottom:416.495948pt;}
.y127{bottom:417.226667pt;}
.y98{bottom:423.167867pt;}
.yaa{bottom:424.317200pt;}
.y108{bottom:424.479498pt;}
.y2aa{bottom:425.210667pt;}
.y297{bottom:426.544000pt;}
.y2fc{bottom:429.209333pt;}
.yc3{bottom:432.888123pt;}
.y322{bottom:433.457600pt;}
.y32b{bottom:433.460800pt;}
.y318{bottom:435.510000pt;}
.y97{bottom:437.751467pt;}
.y148{bottom:440.232365pt;}
.y126{bottom:440.981333pt;}
.y2a9{bottom:441.414667pt;}
.y121{bottom:442.465373pt;}
.y296{bottom:442.748000pt;}
.y306{bottom:444.164400pt;}
.ya9{bottom:446.264000pt;}
.y29{bottom:446.732000pt;}
.y317{bottom:449.046000pt;}
.y107{bottom:452.771312pt;}
.y321{bottom:452.902400pt;}
.y32a{bottom:452.905600pt;}
.yc2{bottom:455.541649pt;}
.y2a8{bottom:457.618667pt;}
.y305{bottom:458.748000pt;}
.y96{bottom:461.810267pt;}
.y147{bottom:462.837471pt;}
.y125{bottom:463.604000pt;}
.y316{bottom:463.629600pt;}
.y51{bottom:464.676000pt;}
.y120{bottom:470.743822pt;}
.y320{bottom:472.345600pt;}
.y329{bottom:472.350400pt;}
.y304{bottom:473.331600pt;}
.y2a7{bottom:473.822667pt;}
.y295{bottom:475.156000pt;}
.y315{bottom:478.213200pt;}
.yc1{bottom:479.327789pt;}
.y106{bottom:482.193405pt;}
.y95{bottom:483.518267pt;}
.y146{bottom:485.441333pt;}
.y124{bottom:487.357333pt;}
.y303{bottom:487.915200pt;}
.y2a6{bottom:490.026667pt;}
.y294{bottom:491.360000pt;}
.y314{bottom:492.796800pt;}
.y11f{bottom:500.153309pt;}
.yc0{bottom:501.982561pt;}
.y94{bottom:502.378667pt;}
.y302{bottom:502.497600pt;}
.y2a5{bottom:506.230667pt;}
.y313{bottom:507.380400pt;}
.y105{bottom:510.485219pt;}
.y31f{bottom:511.236800pt;}
.y4f{bottom:514.365019pt;}
.y301{bottom:517.081200pt;}
.y145{bottom:518.221414pt;}
.y58{bottom:519.388000pt;}
.y226{bottom:520.123151pt;}
.y293{bottom:523.768000pt;}
.ybf{bottom:524.635491pt;}
.y236{bottom:525.286667pt;}
.y4{bottom:525.771733pt;}
.y11e{bottom:527.299475pt;}
.y31e{bottom:530.681600pt;}
.y300{bottom:531.664800pt;}
.y135{bottom:533.680000pt;}
.y10{bottom:533.796000pt;}
.y312{bottom:536.548800pt;}
.y104{bottom:538.777034pt;}
.y144{bottom:540.826519pt;}
.ya{bottom:544.520400pt;}
.y2ff{bottom:546.248400pt;}
.y239{bottom:547.260000pt;}
.ybe{bottom:547.289017pt;}
.yf{bottom:548.379600pt;}
.y31d{bottom:550.126400pt;}
.y311{bottom:551.132400pt;}
.y11d{bottom:555.577923pt;}
.y9{bottom:559.104000pt;}
.y2fe{bottom:560.832000pt;}
.ye{bottom:562.963200pt;}
.y143{bottom:563.431625pt;}
.y310{bottom:565.716000pt;}
.y103{bottom:568.199126pt;}
.y31c{bottom:569.571200pt;}
.ybd{bottom:569.943789pt;}
.y30f{bottom:580.299600pt;}
.y50{bottom:582.849333pt;}
.y8{bottom:584.191067pt;}
.yd{bottom:585.732000pt;}
.y142{bottom:586.035487pt;}
.y31b{bottom:589.014400pt;}
.y328{bottom:589.022400pt;}
.y11c{bottom:589.511564pt;}
.ybc{bottom:592.598561pt;}
.y30e{bottom:594.883200pt;}
.y102{bottom:596.490941pt;}
.y288{bottom:596.812000pt;}
.y7{bottom:600.115067pt;}
.yc{bottom:600.315600pt;}
.y12{bottom:600.318000pt;}
.y2fd{bottom:603.820133pt;}
.y31a{bottom:608.459200pt;}
.y141{bottom:608.639350pt;}
.y30d{bottom:609.465600pt;}
.y287{bottom:611.852000pt;}
.y11b{bottom:612.134820pt;}
.y6{bottom:614.698667pt;}
.yb{bottom:614.899200pt;}
.y11{bottom:614.901600pt;}
.ybb{bottom:615.252123pt;}
.y270{bottom:615.437333pt;}
.y30c{bottom:624.049200pt;}
.y101{bottom:625.913034pt;}
.y319{bottom:627.904000pt;}
.y327{bottom:627.913600pt;}
.y286{bottom:628.056000pt;}
.y268{bottom:629.414667pt;}
.y140{bottom:631.244455pt;}
.y26f{bottom:631.642667pt;}
.y11a{bottom:634.758077pt;}
.y30b{bottom:638.632800pt;}
.yba{bottom:639.038263pt;}
.y25e{bottom:641.385333pt;}
.y285{bottom:644.260000pt;}
.y267{bottom:645.618667pt;}
.y26e{bottom:647.846667pt;}
.y30a{bottom:653.216400pt;}
.y13f{bottom:653.849561pt;}
.y100{bottom:654.204848pt;}
.y119{bottom:657.381333pt;}
.y25d{bottom:657.589333pt;}
.y200{bottom:658.069490pt;}
.y284{bottom:660.464000pt;}
.y266{bottom:661.822667pt;}
.y26d{bottom:664.050667pt;}
.yb9{bottom:667.356105pt;}
.y32e{bottom:671.417333pt;}
.y25c{bottom:673.793333pt;}
.y75{bottom:675.884000pt;}
.y76{bottom:676.217600pt;}
.y13e{bottom:676.454667pt;}
.y283{bottom:676.668000pt;}
.y265{bottom:678.026667pt;}
.y26c{bottom:680.254667pt;}
.y309{bottom:682.384800pt;}
.yff{bottom:683.626941pt;}
.y118{bottom:684.527911pt;}
.y3f{bottom:685.884000pt;}
.y43{bottom:686.709333pt;}
.y25b{bottom:689.997333pt;}
.y282{bottom:692.872000pt;}
.y264{bottom:694.230667pt;}
.yb8{bottom:695.673947pt;}
.y26b{bottom:696.458667pt;}
.y308{bottom:696.968400pt;}
.y13d{bottom:700.189333pt;}
.y3e{bottom:702.089333pt;}
.y117{bottom:702.625770pt;}
.y2f{bottom:702.796000pt;}
.y42{bottom:702.913333pt;}
.y281{bottom:709.076000pt;}
.yfe{bottom:711.918755pt;}
.y5f{bottom:712.218667pt;}
.y116{bottom:719.592590pt;}
.y13c{bottom:723.924546pt;}
.yb7{bottom:725.124403pt;}
.y280{bottom:725.280000pt;}
.y307{bottom:726.136800pt;}
.y3b{bottom:726.184000pt;}
.y3{bottom:726.420267pt;}
.y45{bottom:729.078667pt;}
.y2bd{bottom:731.113131pt;}
.y35{bottom:734.937333pt;}
.y115{bottom:737.691693pt;}
.y2d{bottom:738.266667pt;}
.yfd{bottom:740.210570pt;}
.y27f{bottom:741.484000pt;}
.y3a{bottom:742.388000pt;}
.y269{bottom:744.970667pt;}
.y44{bottom:745.282667pt;}
.y2c0{bottom:747.193333pt;}
.yf8{bottom:751.629333pt;}
.yb6{bottom:753.442245pt;}
.y221{bottom:753.637333pt;}
.y114{bottom:754.658513pt;}
.y27e{bottom:757.688000pt;}
.y13b{bottom:757.831582pt;}
.y47{bottom:769.668000pt;}
.y204{bottom:769.839467pt;}
.y113{bottom:771.625333pt;}
.y27d{bottom:773.892000pt;}
.yfc{bottom:774.160000pt;}
.y48{bottom:774.876000pt;}
.y37{bottom:774.974667pt;}
.y33{bottom:778.486667pt;}
.y2b{bottom:778.665333pt;}
.y13a{bottom:781.568000pt;}
.y6c{bottom:781.743067pt;}
.yb5{bottom:781.761333pt;}
.y46{bottom:783.710667pt;}
.y1cc{bottom:784.844000pt;}
.y65{bottom:787.062667pt;}
.y2fb{bottom:788.217733pt;}
.y27c{bottom:790.096000pt;}
.y1cb{bottom:790.709333pt;}
.y1d0{bottom:790.766667pt;}
.y68{bottom:793.225867pt;}
.y1ca{bottom:793.288267pt;}
.y1cd{bottom:793.728000pt;}
.y6b{bottom:796.326667pt;}
.y71{bottom:796.327867pt;}
.y2e3{bottom:798.337333pt;}
.y1c3{bottom:799.738667pt;}
.y64{bottom:801.646267pt;}
.y2fa{bottom:801.753733pt;}
.y139{bottom:804.172000pt;}
.y27b{bottom:806.300000pt;}
.y67{bottom:807.809467pt;}
.y27{bottom:809.033333pt;}
.y6a{bottom:810.910267pt;}
.y6f{bottom:810.911467pt;}
.y61{bottom:812.187067pt;}
.y6e{bottom:812.920267pt;}
.y2e2{bottom:812.920933pt;}
.y63{bottom:816.229867pt;}
.y2f9{bottom:816.337333pt;}
.yfb{bottom:818.294667pt;}
.y66{bottom:822.393067pt;}
.y27a{bottom:822.504000pt;}
.y69{bottom:825.493867pt;}
.y70{bottom:825.495067pt;}
.y60{bottom:826.770667pt;}
.y2e1{bottom:827.503333pt;}
.y6d{bottom:827.503867pt;}
.y138{bottom:827.908000pt;}
.y62{bottom:830.813467pt;}
.y2f8{bottom:830.920933pt;}
.y256{bottom:834.136133pt;}
.y254{bottom:834.398933pt;}
.y206{bottom:836.945333pt;}
.y279{bottom:838.708000pt;}
.yfa{bottom:840.928000pt;}
.y2e0{bottom:842.086933pt;}
.y26a{bottom:844.562667pt;}
.y2f7{bottom:845.504533pt;}
.y1c9{bottom:847.817867pt;}
.y137{bottom:850.512000pt;}
.y1f6{bottom:851.016000pt;}
.y83{bottom:851.340667pt;}
.y8c{bottom:851.342133pt;}
.y85{bottom:853.572667pt;}
.y1d4{bottom:854.094400pt;}
.y278{bottom:854.912000pt;}
.y1d6{bottom:855.538267pt;}
.y79{bottom:855.910267pt;}
.y2df{bottom:856.670533pt;}
.y7e{bottom:858.021067pt;}
.y2f6{bottom:860.088133pt;}
.yf9{bottom:864.693333pt;}
.y1d3{bottom:865.437200pt;}
.y8b{bottom:865.925733pt;}
.y1d5{bottom:866.881067pt;}
.y84{bottom:868.156267pt;}
.y277{bottom:871.116000pt;}
.y2de{bottom:871.254133pt;}
.y81{bottom:871.894267pt;}
.y7b{bottom:873.683467pt;}
.y136{bottom:874.248000pt;}
.y1d2{bottom:874.273333pt;}
.y2f5{bottom:874.671733pt;}
.y78{bottom:878.317867pt;}
.y8a{bottom:880.509333pt;}
.y2dd{bottom:885.837733pt;}
.y276{bottom:887.320000pt;}
.y1f1{bottom:888.364800pt;}
.y2f4{bottom:889.255333pt;}
.y1f0{bottom:890.932400pt;}
.y7f{bottom:893.602267pt;}
.y89{bottom:898.964975pt;}
.y2dc{bottom:900.421333pt;}
.y77{bottom:901.242667pt;}
.y2{bottom:901.856000pt;}
.y1ef{bottom:902.275200pt;}
.y275{bottom:903.524000pt;}
.y4d{bottom:903.836266pt;}
.y2f3{bottom:903.838933pt;}
.y4c{bottom:908.614902pt;}
.y7c{bottom:912.462667pt;}
.y7a{bottom:912.463867pt;}
.y1ee{bottom:913.618000pt;}
.y88{bottom:913.618667pt;}
.y201{bottom:916.718656pt;}
.y2f2{bottom:918.422533pt;}
.y274{bottom:919.728000pt;}
.y1e3{bottom:923.177200pt;}
.y1ed{bottom:924.961733pt;}
.y87{bottom:932.179867pt;}
.y2f1{bottom:933.006133pt;}
.y1e2{bottom:934.520000pt;}
.y273{bottom:935.932000pt;}
.y1ec{bottom:936.304533pt;}
.y14b{bottom:942.681333pt;}
.y86{bottom:946.762267pt;}
.y2f0{bottom:947.589733pt;}
.y272{bottom:952.136000pt;}
.y1e1{bottom:952.353067pt;}
.y2ef{bottom:962.173333pt;}
.y82{bottom:962.639467pt;}
.y225{bottom:964.483025pt;}
.y1e0{bottom:965.820133pt;}
.y271{bottom:968.340000pt;}
.y1c2{bottom:973.042504pt;}
.y235{bottom:973.806667pt;}
.y2da{bottom:974.793333pt;}
.y2ee{bottom:976.756933pt;}
.y1df{bottom:977.162933pt;}
.y1c1{bottom:983.964000pt;}
.y80{bottom:984.347467pt;}
.y238{bottom:986.784000pt;}
.y2ed{bottom:991.340533pt;}
.y7d{bottom:1003.207867pt;}
.y2ec{bottom:1005.924133pt;}
.ydc{bottom:1012.069333pt;}
.y14{bottom:1012.395600pt;}
.y26{bottom:1013.162667pt;}
.ye8{bottom:1013.349333pt;}
.yf0{bottom:1015.984000pt;}
.ye1{bottom:1018.286167pt;}
.ydf{bottom:1019.320000pt;}
.y2eb{bottom:1020.507733pt;}
.y252{bottom:1022.313333pt;}
.y13{bottom:1026.978000pt;}
.ye0{bottom:1030.914213pt;}
.yee{bottom:1032.055898pt;}
.yda{bottom:1032.549333pt;}
.y2ea{bottom:1035.091333pt;}
.y251{bottom:1037.353333pt;}
.yed{bottom:1044.608977pt;}
.ye6{bottom:1045.349333pt;}
.yef{bottom:1047.489333pt;}
.y2e9{bottom:1049.674933pt;}
.y250{bottom:1053.557333pt;}
.yde{bottom:1056.336000pt;}
.yec{bottom:1057.160000pt;}
.y2e8{bottom:1064.258533pt;}
.y233{bottom:1065.665333pt;}
.y263{bottom:1066.544000pt;}
.y24f{bottom:1069.761333pt;}
.y2db{bottom:1078.053333pt;}
.y25a{bottom:1078.516000pt;}
.y2e7{bottom:1078.842133pt;}
.y21c{bottom:1079.431467pt;}
.yeb{bottom:1080.841282pt;}
.y232{bottom:1081.869333pt;}
.y262{bottom:1082.749333pt;}
.ye4{bottom:1082.816000pt;}
.y24e{bottom:1085.965333pt;}
.y21f{bottom:1089.797333pt;}
.y227{bottom:1090.605333pt;}
.yea{bottom:1093.393333pt;}
.y2e6{bottom:1093.424533pt;}
.y259{bottom:1094.720000pt;}
.y231{bottom:1098.073333pt;}
.y261{bottom:1098.954667pt;}
.ydd{bottom:1099.752000pt;}
.y24d{bottom:1102.169333pt;}
.y2e5{bottom:1108.008133pt;}
.y21b{bottom:1108.598667pt;}
.y258{bottom:1110.924000pt;}
.y230{bottom:1114.277333pt;}
.y260{bottom:1115.160000pt;}
.ye9{bottom:1118.290667pt;}
.y24c{bottom:1118.373333pt;}
.y2e4{bottom:1122.591733pt;}
.y21a{bottom:1123.182267pt;}
.y257{bottom:1127.128000pt;}
.y22f{bottom:1130.481333pt;}
.y25f{bottom:1131.365333pt;}
.y24b{bottom:1134.577333pt;}
.y2bf{bottom:1139.148000pt;}
.ye7{bottom:1141.774667pt;}
.y2bc{bottom:1142.511172pt;}
.ydb{bottom:1144.622667pt;}
.y22e{bottom:1146.685333pt;}
.y1bf{bottom:1148.777600pt;}
.y170{bottom:1149.145216pt;}
.y24a{bottom:1150.781333pt;}
.y219{bottom:1152.350667pt;}
.y16f{bottom:1159.736000pt;}
.y22d{bottom:1162.889333pt;}
.y1b2{bottom:1166.310892pt;}
.y1af{bottom:1166.479833pt;}
.y218{bottom:1166.934267pt;}
.y249{bottom:1166.985333pt;}
.ye5{bottom:1167.085333pt;}
.y2d9{bottom:1167.532267pt;}
.y159{bottom:1170.198454pt;}
.y158{bottom:1170.362709pt;}
.y1a2{bottom:1170.557040pt;}
.y16e{bottom:1175.117851pt;}
.y1a3{bottom:1176.206309pt;}
.y171{bottom:1177.478026pt;}
.y22c{bottom:1179.093333pt;}
.y1a1{bottom:1179.229864pt;}
.y1b7{bottom:1179.246299pt;}
.y157{bottom:1180.497410pt;}
.y2d8{bottom:1181.068267pt;}
.y156{bottom:1181.085333pt;}
.y1b1{bottom:1181.320299pt;}
.y248{bottom:1183.189333pt;}
.y14c{bottom:1188.094667pt;}
.y2ba{bottom:1189.073600pt;}
.y1b8{bottom:1189.357333pt;}
.y1b4{bottom:1189.637333pt;}
.y15a{bottom:1190.812063pt;}
.ye3{bottom:1191.177333pt;}
.y16d{bottom:1191.374706pt;}
.y1ae{bottom:1194.708000pt;}
.y172{bottom:1194.761041pt;}
.y22b{bottom:1195.297333pt;}
.y2d7{bottom:1195.651867pt;}
.y1b6{bottom:1195.664900pt;}
.y1a0{bottom:1196.086989pt;}
.y217{bottom:1196.102667pt;}
.y14d{bottom:1196.657374pt;}
.y1b3{bottom:1197.360000pt;}
.y173{bottom:1197.533844pt;}
.y1b0{bottom:1198.797507pt;}
.y15b{bottom:1199.117638pt;}
.y247{bottom:1199.393333pt;}
.y1a4{bottom:1201.086667pt;}
.y2b9{bottom:1203.657200pt;}
.y1b5{bottom:1204.003644pt;}
.y14f{bottom:1204.878987pt;}
.y14e{bottom:1206.765456pt;}
.y175{bottom:1208.578794pt;}
.y174{bottom:1208.778667pt;}
.y16c{bottom:1208.862667pt;}
.y15c{bottom:1209.220577pt;}
.y2d6{bottom:1210.235467pt;}
.y19f{bottom:1210.372419pt;}
.y216{bottom:1210.686267pt;}
.y22a{bottom:1211.501333pt;}
.y155{bottom:1213.681036pt;}
.y246{bottom:1215.597333pt;}
.y1fe{bottom:1217.458667pt;}
.y16b{bottom:1217.788000pt;}
.y2b8{bottom:1218.239600pt;}
.y15d{bottom:1218.968492pt;}
.y17b{bottom:1219.867723pt;}
.y17a{bottom:1221.698667pt;}
.y150{bottom:1222.463034pt;}
.y1a5{bottom:1224.718667pt;}
.y2d5{bottom:1224.819067pt;}
.y215{bottom:1225.269867pt;}
.y229{bottom:1227.705333pt;}
.y15e{bottom:1228.772670pt;}
.y19d{bottom:1229.567198pt;}
.y19e{bottom:1230.028422pt;}
.y151{bottom:1231.696582pt;}
.y245{bottom:1231.801333pt;}
.y2b7{bottom:1232.823200pt;}
.y15f{bottom:1238.611427pt;}
.y19c{bottom:1239.028677pt;}
.y2d4{bottom:1239.402667pt;}
.y152{bottom:1239.497635pt;}
.y214{bottom:1239.853467pt;}
.y160{bottom:1242.603660pt;}
.y19b{bottom:1242.656540pt;}
.y2ab{bottom:1243.480000pt;}
.y19a{bottom:1246.947305pt;}
.y2b6{bottom:1247.406800pt;}
.y244{bottom:1248.005333pt;}
.y255{bottom:1250.839733pt;}
.y253{bottom:1251.101333pt;}
.y1a8{bottom:1251.945353pt;}
.y1bb{bottom:1253.169886pt;}
.y2d3{bottom:1253.986267pt;}
.y213{bottom:1254.437067pt;}
.y199{bottom:1255.052327pt;}
.y16a{bottom:1255.070667pt;}
.y161{bottom:1256.661333pt;}
.y153{bottom:1256.875424pt;}
.y198{bottom:1260.649456pt;}
.y176{bottom:1261.076000pt;}
.y2b5{bottom:1261.990400pt;}
.y25{bottom:1262.532000pt;}
.y243{bottom:1264.209333pt;}
.y1a7{bottom:1264.305670pt;}
.y1ab{bottom:1264.880909pt;}
.y154{bottom:1266.345997pt;}
.y197{bottom:1266.804233pt;}
.y196{bottom:1268.024478pt;}
.y2d2{bottom:1268.569867pt;}
.y212{bottom:1269.020667pt;}
.y228{bottom:1269.467733pt;}
.y162{bottom:1275.150667pt;}
.y1ad{bottom:1275.708000pt;}
.y1aa{bottom:1275.877844pt;}
.y2b4{bottom:1276.574000pt;}
.y1a6{bottom:1276.980000pt;}
.y242{bottom:1280.414667pt;}
.y178{bottom:1280.426232pt;}
.y195{bottom:1281.968320pt;}
.y2d1{bottom:1283.153467pt;}
.y211{bottom:1283.604267pt;}
.y1ac{bottom:1285.463151pt;}
.y177{bottom:1286.057357pt;}
.y194{bottom:1286.807066pt;}
.y1a9{bottom:1290.281333pt;}
.y193{bottom:1290.663093pt;}
.y2b3{bottom:1291.157600pt;}
.y192{bottom:1292.537612pt;}
.y21{bottom:1296.500000pt;}
.y241{bottom:1296.618667pt;}
.y2d0{bottom:1297.737067pt;}
.y179{bottom:1298.452832pt;}
.y191{bottom:1299.280237pt;}
.y163{bottom:1303.699454pt;}
.y190{bottom:1304.611973pt;}
.y2b2{bottom:1305.741200pt;}
.y18f{bottom:1310.774742pt;}
.y1be{bottom:1311.342779pt;}
.y2cf{bottom:1312.320667pt;}
.y210{bottom:1312.771467pt;}
.y240{bottom:1312.822667pt;}
.y18e{bottom:1317.530863pt;}
.y2b1{bottom:1320.324800pt;}
.y18d{bottom:1320.447062pt;}
.y164{bottom:1325.847973pt;}
.y1ba{bottom:1326.212484pt;}
.y18c{bottom:1326.684104pt;}
.y2ce{bottom:1326.904267pt;}
.y20f{bottom:1327.355067pt;}
.yd9{bottom:1327.709333pt;}
.y23f{bottom:1329.026667pt;}
.y17f{bottom:1329.980000pt;}
.y180{bottom:1331.672961pt;}
.y18b{bottom:1332.693450pt;}
.y2b0{bottom:1334.908400pt;}
.y17e{bottom:1335.672000pt;}
.y18a{bottom:1339.951995pt;}
.y2cd{bottom:1341.487867pt;}
.y20e{bottom:1341.938667pt;}
.y189{bottom:1343.353436pt;}
.y23e{bottom:1345.230667pt;}
.y188{bottom:1349.136000pt;}
.y17d{bottom:1349.402667pt;}
.y2af{bottom:1349.492000pt;}
.yd7{bottom:1355.549333pt;}
.y2cc{bottom:1356.071467pt;}
.y165{bottom:1357.122667pt;}
.y17c{bottom:1360.477333pt;}
.y23d{bottom:1361.434667pt;}
.y92{bottom:1361.545333pt;}
.y187{bottom:1367.104625pt;}
.y2cb{bottom:1370.655067pt;}
.y20d{bottom:1371.107067pt;}
.ye2{bottom:1371.201333pt;}
.y166{bottom:1373.357095pt;}
.y186{bottom:1373.520397pt;}
.yd6{bottom:1375.109333pt;}
.yd8{bottom:1376.709333pt;}
.y23c{bottom:1377.638667pt;}
.y1bc{bottom:1379.856125pt;}
.y185{bottom:1382.513865pt;}
.y1b9{bottom:1384.400133pt;}
.y2ca{bottom:1385.238667pt;}
.y20c{bottom:1385.690667pt;}
.y167{bottom:1390.084674pt;}
.y184{bottom:1393.324212pt;}
.y23b{bottom:1393.842667pt;}
.y224{bottom:1394.028000pt;}
.y2ad{bottom:1398.774400pt;}
.y1bd{bottom:1399.121353pt;}
.y2c9{bottom:1399.822267pt;}
.yf1{bottom:1402.237333pt;}
.y183{bottom:1403.831935pt;}
.y168{bottom:1406.899159pt;}
.y23a{bottom:1410.046667pt;}
.y234{bottom:1413.038667pt;}
.y182{bottom:1413.303949pt;}
.y2c8{bottom:1414.405867pt;}
.y20b{bottom:1414.859067pt;}
.y4b{bottom:1422.753363pt;}
.y169{bottom:1423.112172pt;}
.y237{bottom:1426.308000pt;}
.y21e{bottom:1426.902667pt;}
.y4a{bottom:1427.532000pt;}
.y2c7{bottom:1428.989467pt;}
.y20a{bottom:1429.442667pt;}
.y74{bottom:1429.614667pt;}
.y73{bottom:1430.996000pt;}
.y181{bottom:1431.818667pt;}
.yf5{bottom:1432.203067pt;}
.y20{bottom:1432.774667pt;}
.y220{bottom:1439.065333pt;}
.y24{bottom:1441.322667pt;}
.y2c6{bottom:1443.573067pt;}
.yf4{bottom:1446.786667pt;}
.y1f{bottom:1447.358267pt;}
.y49{bottom:1455.232000pt;}
.y203{bottom:1457.168800pt;}
.y2c5{bottom:1458.156667pt;}
.y23{bottom:1459.092933pt;}
.yf3{bottom:1461.370267pt;}
.yf6{bottom:1461.371467pt;}
.y1e{bottom:1461.941867pt;}
.y1cf{bottom:1463.717467pt;}
.y1ce{bottom:1463.724667pt;}
.y222{bottom:1464.903200pt;}
.y1ff{bottom:1465.188970pt;}
.y1c4{bottom:1468.018667pt;}
.y2c4{bottom:1472.740267pt;}
.y1c5{bottom:1473.821067pt;}
.y1c0{bottom:1480.536288pt;}
.y28{bottom:1481.227200pt;}
.y21d{bottom:1487.182933pt;}
.y2c3{bottom:1487.323867pt;}
.y223{bottom:1495.164400pt;}
.y93{bottom:1496.017200pt;}
.y72{bottom:1496.299333pt;}
.yf2{bottom:1497.795867pt;}
.y330{bottom:1501.641867pt;}
.y2c2{bottom:1501.907467pt;}
.y1{bottom:1502.558933pt;}
.y22{bottom:1502.793333pt;}
.y205{bottom:1505.818667pt;}
.y1d1{bottom:1509.091200pt;}
.y2bb{bottom:1514.874533pt;}
.y2c1{bottom:1516.491067pt;}
.y2be{bottom:1531.102533pt;}
.h60{height:7.014453pt;}
.h6{height:11.596928pt;}
.hc{height:15.347072pt;}
.h55{height:16.593375pt;}
.h57{height:16.609778pt;}
.h5b{height:16.619150pt;}
.h58{height:16.619478pt;}
.h5e{height:16.623179pt;}
.h54{height:16.624060pt;}
.h59{height:16.625521pt;}
.h51{height:16.627445pt;}
.h53{height:16.627469pt;}
.h5a{height:16.627829pt;}
.h56{height:16.627898pt;}
.h5d{height:16.629222pt;}
.h61{height:16.633251pt;}
.h3d{height:16.710404pt;}
.h3a{height:16.720532pt;}
.h3c{height:16.722557pt;}
.h49{height:16.732765pt;}
.h3e{height:16.738679pt;}
.h4d{height:16.751691pt;}
.h4c{height:16.751739pt;}
.h3f{height:16.753047pt;}
.h39{height:16.753592pt;}
.h4e{height:16.753930pt;}
.h48{height:16.755075pt;}
.h41{height:16.755797pt;}
.h36{height:16.758497pt;}
.h4a{height:16.759132pt;}
.h32{height:16.763963pt;}
.h35{height:16.768654pt;}
.h40{height:16.770004pt;}
.h33{height:16.770059pt;}
.h34{height:16.772716pt;}
.h37{height:16.774748pt;}
.h50{height:16.776831pt;}
.h45{height:16.782577pt;}
.h47{height:16.783438pt;}
.h44{height:16.784611pt;}
.h38{height:16.784904pt;}
.h4b{height:16.787482pt;}
.h46{height:16.787503pt;}
.h4f{height:16.789029pt;}
.h43{height:16.790714pt;}
.h42{height:16.794783pt;}
.h3b{height:17.309953pt;}
.h5f{height:23.017019pt;}
.h64{height:26.400000pt;}
.h52{height:26.865920pt;}
.h10{height:27.041840pt;}
.h72{height:29.568000pt;}
.h5c{height:32.676271pt;}
.h71{height:32.853333pt;}
.h23{height:33.932800pt;}
.h20{height:34.082400pt;}
.h25{height:34.848000pt;}
.h63{height:35.982613pt;}
.hf{height:36.799429pt;}
.he{height:36.836800pt;}
.h62{height:36.927557pt;}
.hd{height:37.002299pt;}
.h69{height:37.370667pt;}
.h27{height:39.362400pt;}
.h70{height:39.424000pt;}
.h30{height:41.025600pt;}
.h2d{height:41.060800pt;}
.h2a{height:41.078400pt;}
.h19{height:41.118000pt;}
.h1a{height:41.122840pt;}
.h1b{height:41.125368pt;}
.h24{height:41.324933pt;}
.h21{height:41.492000pt;}
.h6c{height:42.074032pt;}
.h2{height:42.709333pt;}
.h2c{height:44.644288pt;}
.h67{height:45.773728pt;}
.h6a{height:45.828181pt;}
.h66{height:46.158112pt;}
.h65{height:47.044331pt;}
.h68{height:47.397333pt;}
.h17{height:47.508795pt;}
.h73{height:47.610229pt;}
.h3{height:48.048000pt;}
.h15{height:48.282901pt;}
.h1e{height:48.576000pt;}
.h1d{height:52.800000pt;}
.h4{height:53.385067pt;}
.h5{height:53.385600pt;}
.h7{height:53.386667pt;}
.ha{height:53.390400pt;}
.h9{height:54.843733pt;}
.h74{height:57.129072pt;}
.h13{height:57.897600pt;}
.h6e{height:58.725333pt;}
.h1f{height:61.248000pt;}
.h8{height:64.064000pt;}
.h12{height:67.162667pt;}
.h26{height:67.887600pt;}
.hb{height:68.832000pt;}
.h22{height:70.608000pt;}
.h6d{height:70.963200pt;}
.h16{height:72.384000pt;}
.h6b{height:72.471467pt;}
.h29{height:74.690000pt;}
.h1{height:74.741333pt;}
.h75{height:75.711715pt;}
.h31{height:81.650464pt;}
.h2e{height:81.713072pt;}
.h1c{height:81.823840pt;}
.h76{height:83.622400pt;}
.h11{height:98.347200pt;}
.h14{height:104.740800pt;}
.h6f{height:249.134219pt;}
.h2f{height:546.316000pt;}
.h28{height:774.465333pt;}
.h2b{height:785.401333pt;}
.h18{height:795.553333pt;}
.h0{height:1588.000000pt;}
.w1{width:483.673333pt;}
.w2{width:496.437333pt;}
.w3{width:496.518667pt;}
.w4{width:496.586667pt;}
.w0{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x58{left:1.333333pt;}
.x73{left:8.130153pt;}
.x5a{left:21.705333pt;}
.x6c{left:27.380000pt;}
.x123{left:38.776000pt;}
.x59{left:42.078779pt;}
.x33{left:47.693067pt;}
.x32{left:50.635333pt;}
.x11{left:55.562000pt;}
.x68{left:59.448533pt;}
.xfe{left:60.680400pt;}
.x23{left:63.421519pt;}
.x6a{left:64.892933pt;}
.x13{left:65.910133pt;}
.x12{left:67.687467pt;}
.x5e{left:69.612000pt;}
.x24{left:72.170413pt;}
.x22{left:73.236133pt;}
.x71{left:74.492000pt;}
.x61{left:75.605600pt;}
.xfc{left:77.924000pt;}
.x127{left:81.409467pt;}
.x3c{left:88.150933pt;}
.x72{left:90.816650pt;}
.x74{left:97.346533pt;}
.x76{left:99.612000pt;}
.x5b{left:101.590933pt;}
.x75{left:107.540667pt;}
.x16{left:110.974800pt;}
.x18{left:111.887467pt;}
.x77{left:114.337067pt;}
.x124{left:119.832000pt;}
.x78{left:122.265733pt;}
.x102{left:123.550800pt;}
.x31{left:124.586400pt;}
.x110{left:127.769867pt;}
.x4{left:131.520267pt;}
.xff{left:138.714667pt;}
.x111{left:145.892000pt;}
.x10f{left:151.257333pt;}
.x125{left:156.496000pt;}
.x5f{left:204.986667pt;}
.x2{left:211.494667pt;}
.x5d{left:221.945333pt;}
.x126{left:224.406400pt;}
.x60{left:234.566685pt;}
.x115{left:239.233867pt;}
.x3e{left:247.953333pt;}
.x3{left:260.063200pt;}
.xf2{left:266.728000pt;}
.x112{left:269.663200pt;}
.x117{left:271.575067pt;}
.x100{left:282.329067pt;}
.xed{left:328.732133pt;}
.xea{left:330.984000pt;}
.xe6{left:342.882667pt;}
.x5{left:344.289333pt;}
.xf{left:351.745333pt;}
.x5c{left:357.012000pt;}
.x4e{left:383.446533pt;}
.x4d{left:385.185333pt;}
.x4f{left:388.154933pt;}
.x1c{left:389.352000pt;}
.x3b{left:400.097333pt;}
.x34{left:403.722267pt;}
.x101{left:417.693333pt;}
.x69{left:444.815333pt;}
.xdd{left:455.496000pt;}
.xe{left:458.129600pt;}
.xa{left:534.402800pt;}
.xfb{left:535.832533pt;}
.xb{left:537.490667pt;}
.xe7{left:547.966667pt;}
.x6{left:549.181333pt;}
.x45{left:576.940533pt;}
.x3f{left:578.781333pt;}
.x44{left:579.945333pt;}
.x6b{left:591.894667pt;}
.x6e{left:600.022667pt;}
.x6f{left:619.274667pt;}
.x70{left:639.660274pt;}
.x21{left:664.329333pt;}
.x6d{left:689.490667pt;}
.x35{left:696.219867pt;}
.xf7{left:699.058667pt;}
.x20{left:706.636000pt;}
.xf9{left:708.244000pt;}
.xf5{left:747.093333pt;}
.xf4{left:750.973333pt;}
.x62{left:758.588000pt;}
.x103{left:771.720000pt;}
.x104{left:772.705333pt;}
.x105{left:773.690667pt;}
.x30{left:781.908000pt;}
.xe1{left:784.737333pt;}
.x64{left:797.270667pt;}
.xe4{left:800.108000pt;}
.x63{left:801.110667pt;}
.x65{left:823.510667pt;}
.x41{left:843.214533pt;}
.x4c{left:884.610667pt;}
.x3a{left:890.554667pt;}
.xf3{left:908.285333pt;}
.x66{left:922.832006pt;}
.xf8{left:948.622667pt;}
.xfd{left:982.893333pt;}
.x36{left:985.225467pt;}
.x128{left:1005.045333pt;}
.x1{left:1019.558667pt;}
.x10{left:1022.021333pt;}
.xeb{left:1040.021467pt;}
.x1e{left:1052.692000pt;}
.x1f{left:1054.209333pt;}
.xee{left:1059.212000pt;}
.xec{left:1060.110533pt;}
.xe8{left:1061.390667pt;}
.x2f{left:1081.421215pt;}
.x2d{left:1111.222667pt;}
.x57{left:1117.473333pt;}
.x2e{left:1120.178443pt;}
.xc{left:1144.316000pt;}
.x8{left:1145.808800pt;}
.x7{left:1147.472000pt;}
.x43{left:1165.864533pt;}
.xe5{left:1173.138667pt;}
.x50{left:1176.744533pt;}
.x51{left:1180.482533pt;}
.xef{left:1183.492000pt;}
.x52{left:1188.046667pt;}
.x54{left:1189.437333pt;}
.x55{left:1192.334133pt;}
.x53{left:1193.370667pt;}
.x4a{left:1275.391733pt;}
.x4b{left:1278.288533pt;}
.x37{left:1294.196667pt;}
.x10d{left:1323.055867pt;}
.x10e{left:1325.379867pt;}
.x106{left:1328.316000pt;}
.x107{left:1329.301333pt;}
.x108{left:1330.285333pt;}
.x67{left:1345.400000pt;}
.xfa{left:1364.413333pt;}
.x3d{left:1383.908133pt;}
.x11b{left:1454.360000pt;}
.x120{left:1456.373333pt;}
.x114{left:1457.346667pt;}
.x11c{left:1462.266667pt;}
.x17{left:1467.640000pt;}
.x19{left:1468.546667pt;}
.x40{left:1474.799733pt;}
.x25{left:1478.200000pt;}
.x11e{left:1484.346667pt;}
.x116{left:1493.147467pt;}
.x121{left:1494.133867pt;}
.x113{left:1499.133333pt;}
.xe3{left:1518.360000pt;}
.xe2{left:1526.919867pt;}
.x29{left:1534.960397pt;}
.x28{left:1552.826667pt;}
.x118{left:1569.706667pt;}
.x11a{left:1574.613945pt;}
.x122{left:1577.066667pt;}
.x38{left:1580.975067pt;}
.x11f{left:1582.626667pt;}
.x109{left:1585.919867pt;}
.x10c{left:1589.759867pt;}
.x10a{left:1590.946667pt;}
.x26{left:1592.133626pt;}
.xd7{left:1595.226743pt;}
.x79{left:1600.053333pt;}
.x119{left:1605.640261pt;}
.x80{left:1608.173559pt;}
.xd6{left:1613.813333pt;}
.x86{left:1620.414368pt;}
.x7a{left:1622.906800pt;}
.x7c{left:1625.173333pt;}
.x27{left:1627.640000pt;}
.x7b{left:1633.106667pt;}
.x7d{left:1639.893333pt;}
.x7e{left:1647.826667pt;}
.x85{left:1654.120030pt;}
.x10b{left:1663.093067pt;}
.x1a{left:1667.146667pt;}
.x84{left:1669.453068pt;}
.x49{left:1672.240133pt;}
.x1b{left:1673.133333pt;}
.x96{left:1675.105779pt;}
.x94{left:1678.813066pt;}
.x87{left:1680.187831pt;}
.x95{left:1687.252738pt;}
.x83{left:1689.733427pt;}
.x93{left:1691.013402pt;}
.xd{left:1693.133600pt;}
.x7f{left:1697.666667pt;}
.x82{left:1700.106348pt;}
.x92{left:1706.320000pt;}
.x9{left:1709.892800pt;}
.x8f{left:1713.039959pt;}
.x91{left:1715.093200pt;}
.x90{left:1718.546762pt;}
.x81{left:1722.546667pt;}
.x8e{left:1724.946707pt;}
.xd8{left:1727.079634pt;}
.x88{left:1734.120000pt;}
.x8d{left:1736.599700pt;}
.x89{left:1745.239897pt;}
.x47{left:1746.132933pt;}
.x8a{left:1747.680073pt;}
.x97{left:1750.346667pt;}
.xa5{left:1752.106440pt;}
.x8c{left:1756.639891pt;}
.xa4{left:1757.573475pt;}
.x8b{left:1762.133231pt;}
.xf0{left:1771.906800pt;}
.xf1{left:1773.319867pt;}
.x98{left:1780.080133pt;}
.xa3{left:1783.866667pt;}
.x99{left:1789.573467pt;}
.x15{left:1794.146667pt;}
.xda{left:1795.532283pt;}
.xe9{left:1796.706133pt;}
.x9a{left:1797.946987pt;}
.xa2{left:1798.973073pt;}
.xd9{left:1801.065828pt;}
.xa1{left:1810.466667pt;}
.xa0{left:1815.880899pt;}
.xa8{left:1817.960000pt;}
.x9b{left:1822.466897pt;}
.x56{left:1826.533333pt;}
.xa9{left:1827.946667pt;}
.x9f{left:1831.600552pt;}
.x9c{left:1838.346667pt;}
.xa7{left:1841.426808pt;}
.x9d{left:1847.719844pt;}
.x9e{left:1851.066938pt;}
.xa6{left:1855.960000pt;}
.xaa{left:1869.253617pt;}
.xf6{left:1870.146667pt;}
.xc2{left:1873.172032pt;}
.x11d{left:1874.986667pt;}
.xc1{left:1876.932102pt;}
.x1d{left:1878.160000pt;}
.xbf{left:1879.225820pt;}
.xdf{left:1882.519200pt;}
.x39{left:1883.721867pt;}
.xb9{left:1886.386491pt;}
.xc0{left:1888.185416pt;}
.xde{left:1891.026400pt;}
.xbd{left:1892.825564pt;}
.xe0{left:1894.320000pt;}
.xba{left:1896.092795pt;}
.xae{left:1899.933505pt;}
.xad{left:1901.746957pt;}
.xbb{left:1905.625905pt;}
.xb6{left:1909.306428pt;}
.xb2{left:1914.786675pt;}
.xac{left:1916.520141pt;}
.xb7{left:1918.892924pt;}
.xab{left:1920.813333pt;}
.xb3{left:1923.386630pt;}
.xb8{left:1928.186266pt;}
.xbe{left:1929.345213pt;}
.xb4{left:1931.986471pt;}
.xbc{left:1933.078975pt;}
.xb0{left:1937.333333pt;}
.xdb{left:1940.718653pt;}
.xb5{left:1943.239716pt;}
.xb1{left:1947.799786pt;}
.xaf{left:1952.013503pt;}
.xc4{left:1965.226667pt;}
.xc3{left:1968.906800pt;}
.xdc{left:2002.771708pt;}
.xc5{left:2007.853333pt;}
.x14{left:2014.000000pt;}
.xc6{left:2017.733907pt;}
.x2a{left:2031.026667pt;}
.xcd{left:2033.866631pt;}
.x2b{left:2034.759867pt;}
.x2c{left:2035.999467pt;}
.xcc{left:2037.960000pt;}
.xc7{left:2043.226667pt;}
.xc8{left:2046.626312pt;}
.xc9{left:2050.146534pt;}
.x46{left:2062.266933pt;}
.x42{left:2063.253333pt;}
.x48{left:2066.759867pt;}
.xce{left:2068.332487pt;}
.xd0{left:2072.905831pt;}
.xcf{left:2074.719184pt;}
.xca{left:2088.306752pt;}
.xd1{left:2092.693333pt;}
.xd2{left:2102.400000pt;}
.xcb{left:2121.306667pt;}
.xd3{left:2123.093412pt;}
.xd4{left:2126.626372pt;}
.xd5{left:2128.332892pt;}
}




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