
    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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_afa47eb65c4dcfbcd2f82d12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953125;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_5d1779d5a33175165ca8866e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_33a930deec9c0693257927cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_821de6c3b9e4f151144f20b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_48434c9141ef314757ab309e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_1e523c37317249d8a9aca9c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64df2ab91cc466b5175b9734.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_12319657dc051e21b9dc3a31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1110bc0603c2870c7177e64d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c33e93e53959ef7f6dbbcbb3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a02445183623997721fc3f49.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aea707280bf3ce40e3530add.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f62fde03aac600544fda79c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bdcfb16a57a0d3fc6a8a1683.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_554f4480fe9092d82a921e72.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_108f29d543eadfdf873db0c5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_be7748826f5548d909662994.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1592bff4ae7bf6e38cec2b39.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_aae009675c250039836d2b5b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.012695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f104e2390978dc315e82e6f8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_de122975b78a1dcaaed486d2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_017a1549f26d5e1101d63af2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_84f1eaa1beb1e6f94a773b31.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_89b78cd987ce40612440b91f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c6693f1394a77c3bec350166.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.981445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_106af2d018580cc9b93cba45.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_8f008339fd6103c7d1f97820.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-29.389499px;}
.v6{vertical-align:-27.224995px;}
.v3{vertical-align:-24.750000px;}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.225001px;}
.v4{vertical-align:29.389494px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:7.332024px;}
.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;}
}
.wsf{word-spacing:-38.742001px;}
.ws0{word-spacing:-19.656000px;}
.ws3{word-spacing:-18.480000px;}
.wsc{word-spacing:-18.336914px;}
.ws4{word-spacing:-18.018000px;}
.ws9{word-spacing:-17.820000px;}
.ws2{word-spacing:-17.683594px;}
.wse{word-spacing:-17.199000px;}
.wsa{word-spacing:-16.403321px;}
.wsd{word-spacing:-14.882812px;}
.ws8{word-spacing:-13.104000px;}
.wsb{word-spacing:-11.088000px;}
.ws5{word-spacing:-10.810800px;}
.ws7{word-spacing:-9.828000px;}
.ws6{word-spacing:-7.862400px;}
.ws1{word-spacing:0.000000px;}
._41{margin-left:-9.717122px;}
._11{margin-left:-7.814455px;}
._0{margin-left:-6.623608px;}
._1d{margin-left:-4.645629px;}
._2{margin-left:-3.480469px;}
._1{margin-left:-1.583653px;}
._3{width:1.757814px;}
._4{width:2.772948px;}
._5{width:3.857991px;}
._6{width:5.008404px;}
._7{width:8.900760px;}
._37{width:9.903590px;}
._38{width:11.357991px;}
._8{width:12.627650px;}
._9{width:14.163084px;}
._10{width:16.995583px;}
._b{width:21.700916px;}
._f{width:23.251694px;}
._a{width:26.900935px;}
._3c{width:31.406248px;}
._40{width:35.293588px;}
._3b{width:36.556470px;}
._39{width:39.898970px;}
._3a{width:40.973544px;}
._d{width:44.159394px;}
._e{width:45.900766px;}
._c{width:49.567194px;}
._3f{width:63.205141px;}
._3e{width:67.367754px;}
._36{width:86.692778px;}
._3d{width:91.055413px;}
._32{width:390.395792px;}
._25{width:445.700819px;}
._15{width:623.464841px;}
._18{width:745.630421px;}
._23{width:839.541404px;}
._30{width:1260.177557px;}
._33{width:1281.329869px;}
._29{width:1292.771867px;}
._19{width:1344.101176px;}
._1e{width:1406.514468px;}
._24{width:1421.702042px;}
._1f{width:1423.234632px;}
._28{width:1424.640178px;}
._27{width:1448.802602px;}
._1a{width:1509.339624px;}
._34{width:1655.951201px;}
._16{width:1761.040867px;}
._1c{width:1770.717302px;}
._1b{width:1831.948120px;}
._22{width:1891.228473px;}
._2e{width:1940.801974px;}
._14{width:1992.635922px;}
._17{width:2013.226798px;}
._13{width:2026.096425px;}
._21{width:2037.673246px;}
._31{width:2053.472033px;}
._26{width:2087.692313px;}
._35{width:2095.223910px;}
._2c{width:2097.551978px;}
._20{width:2129.026179px;}
._2b{width:2150.285631px;}
._2d{width:2155.284448px;}
._2f{width:2167.808978px;}
._2a{width:2200.076435px;}
._12{width:2321.578432px;}
.fc7{color:rgb(60,64,67);}
.fc6{color:rgb(112,113,117);}
.fc4{color:rgb(63,108,179);}
.fc3{color:rgb(23,25,28);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(204,171,49);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fsa{font-size:28.800000px;}
.fsc{font-size:36.000000px;}
.fs9{font-size:39.600001px;}
.fsd{font-size:41.999999px;}
.fsf{font-size:44.529543px;}
.fsb{font-size:48.000002px;}
.fs10{font-size:54.000000px;}
.fs6{font-size:59.999999px;}
.fs11{font-size:63.000000px;}
.fs4{font-size:66.000002px;}
.fs7{font-size:68.031244px;}
.fs0{font-size:72.000000px;}
.fse{font-size:74.215901px;}
.fs8{font-size:78.000003px;}
.fs5{font-size:80.400563px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y248{bottom:0.750000px;}
.y8e{bottom:12.000000px;}
.y364{bottom:14.765636px;}
.y36c{bottom:15.090820px;}
.y8c{bottom:15.093750px;}
.y368{bottom:15.099615px;}
.y24{bottom:18.750000px;}
.y37c{bottom:22.218750px;}
.y261{bottom:24.142089px;}
.y26a{bottom:24.823235px;}
.y298{bottom:24.823239px;}
.y2a1{bottom:24.823241px;}
.y22d{bottom:24.823243px;}
.y27a{bottom:24.826160px;}
.y264{bottom:24.826164px;}
.y290{bottom:24.826166px;}
.y24d{bottom:24.826172px;}
.y237{bottom:24.826175px;}
.y256{bottom:24.826179px;}
.y234{bottom:24.826181px;}
.y253{bottom:24.829103px;}
.y110{bottom:26.999265px;}
.y12d{bottom:26.999991px;}
.y116{bottom:26.999997px;}
.y10d{bottom:26.999999px;}
.y121{bottom:27.000003px;}
.y127{bottom:27.000006px;}
.y320{bottom:28.778320px;}
.y31b{bottom:28.784190px;}
.y313{bottom:28.787115px;}
.y1d1{bottom:29.215569px;}
.y1d3{bottom:29.218507px;}
.y1d9{bottom:29.218509px;}
.y266{bottom:29.323235px;}
.y229{bottom:29.323241px;}
.y22b{bottom:29.323243px;}
.y26d{bottom:29.326166px;}
.y225{bottom:29.326172px;}
.y28a{bottom:29.326175px;}
.y247{bottom:29.326181px;}
.y251{bottom:29.329103px;}
.y282{bottom:29.329104px;}
.y23e{bottom:29.329112px;}
.y26f{bottom:29.437501px;}
.y339{bottom:29.762690px;}
.y36f{bottom:29.762695px;}
.y32d{bottom:29.771480px;}
.y345{bottom:29.771484px;}
.y324{bottom:30.087880px;}
.y33d{bottom:30.087885px;}
.y2bd{bottom:30.087886px;}
.y348{bottom:30.087889px;}
.y2c5{bottom:30.090825px;}
.y166{bottom:30.093723px;}
.y398{bottom:30.093744px;}
.y10b{bottom:30.093750px;}
.y17e{bottom:30.093753px;}
.y16c{bottom:30.093756px;}
.y169{bottom:30.093757px;}
.y333{bottom:30.096675px;}
.y328{bottom:30.096679px;}
.y34b{bottom:30.096681px;}
.y30a{bottom:30.096685px;}
.y317{bottom:30.096690px;}
.y198{bottom:30.436556px;}
.y14d{bottom:30.670902px;}
.y48{bottom:33.615231px;}
.y39{bottom:33.615234px;}
.y3e{bottom:33.615411px;}
.y29{bottom:33.615417px;}
.y27{bottom:33.615600px;}
.y32{bottom:33.615606px;}
.y37{bottom:33.615783px;}
.y363{bottom:37.406261px;}
.y23{bottom:37.810546px;}
.y95{bottom:38.812500px;}
.y36b{bottom:38.815435px;}
.y271{bottom:44.843262px;}
.y25d{bottom:45.527345px;}
.y2a0{bottom:45.527351px;}
.y255{bottom:45.530275px;}
.y233{bottom:45.530276px;}
.y10f{bottom:46.802491px;}
.y115{bottom:46.803223px;}
.y113{bottom:47.625000px;}
.y126{bottom:47.625006px;}
.y228{bottom:50.027336px;}
.y24f{bottom:50.027345px;}
.y294{bottom:50.027351px;}
.y281{bottom:50.030274px;}
.y246{bottom:50.030276px;}
.y23d{bottom:50.030282px;}
.y1d0{bottom:51.035890px;}
.y1d8{bottom:51.038814px;}
.y358{bottom:52.403315px;}
.y36e{bottom:52.403320px;}
.y338{bottom:52.409179px;}
.y32c{bottom:52.412105px;}
.y344{bottom:52.412109px;}
.y35e{bottom:53.806635px;}
.y2bc{bottom:53.809570px;}
.y327{bottom:53.812489px;}
.y355{bottom:53.812495px;}
.y341{bottom:53.812498px;}
.y1ac{bottom:53.812500px;}
.y336{bottom:53.812504px;}
.y322{bottom:53.818365px;}
.y3b{bottom:57.750000px;}
.y24a{bottom:58.125000px;}
.y36{bottom:58.459533px;}
.y31{bottom:58.459716px;}
.y279{bottom:59.843254px;}
.y362{bottom:60.043945px;}
.y28f{bottom:60.527336px;}
.y236{bottom:60.527345px;}
.y263{bottom:60.530275px;}
.y36a{bottom:62.528321px;}
.y94{bottom:62.531250px;}
.y12c{bottom:62.624993px;}
.y119{bottom:62.625000px;}
.y22{bottom:63.079101px;}
.y31a{bottom:63.187500px;}
.y312{bottom:64.500000px;}
.y31f{bottom:64.500010px;}
.y273{bottom:65.030275px;}
.y29f{bottom:66.231446px;}
.y112{bottom:68.250000px;}
.y125{bottom:68.250006px;}
.y30e{bottom:68.809570px;}
.y366{bottom:68.812500px;}
.y33f{bottom:68.815429px;}
.y227{bottom:70.731446px;}
.y280{bottom:70.734369px;}
.y23c{bottom:70.845711px;}
.y1d7{bottom:72.856209px;}
.y343{bottom:75.049804px;}
.y32b{bottom:75.052730px;}
.y332{bottom:77.528310px;}
.y34a{bottom:77.528319px;}
.y354{bottom:77.528320px;}
.y33c{bottom:77.528325px;}
.y1ab{bottom:77.531250px;}
.y326{bottom:77.534179px;}
.y316{bottom:77.537115px;}
.y3a{bottom:78.375001px;}
.y249{bottom:78.750001px;}
.y28e{bottom:81.231446px;}
.y232{bottom:81.234386px;}
.y118{bottom:83.250000px;}
.y93{bottom:86.250000px;}
.y311{bottom:88.224615px;}
.y11d{bottom:88.875000px;}
.y124{bottom:88.875006px;}
.y330{bottom:92.525380px;}
.y30d{bottom:92.534185px;}
.y1d6{bottom:94.676515px;}
.y278{bottom:94.677244px;}
.y12b{bottom:97.428218px;}
.y32a{bottom:97.690429px;}
.y319{bottom:98.906250px;}
.y353{bottom:101.244130px;}
.y35d{bottom:101.247075px;}
.y315{bottom:101.250000px;}
.y31e{bottom:103.221685px;}
.y135{bottom:103.875000px;}
.y27f{bottom:106.435539px;}
.y245{bottom:106.435556px;}
.y23b{bottom:107.408211px;}
.y123{bottom:109.500000px;}
.y310{bottom:111.937500px;}
.y20{bottom:115.458990px;}
.y30c{bottom:116.247071px;}
.y231{bottom:116.938481px;}
.y132{bottom:118.875000px;}
.y352{bottom:124.965821px;}
.y35c{bottom:124.968750px;}
.y31d{bottom:126.934571px;}
.y27e{bottom:127.139650px;}
.y277{bottom:129.514160px;}
.y12a{bottom:132.231443px;}
.y1f{bottom:139.177830px;}
.y134{bottom:139.500000px;}
.y244{bottom:142.139651px;}
.y23a{bottom:143.859377px;}
.y365{bottom:146.542965px;}
.y306{bottom:147.614055px;}
.y15d{bottom:147.615525px;}
.ya0{bottom:147.615526px;}
.y1c1{bottom:147.616995px;}
.y144{bottom:147.858405px;}
.y38c{bottom:148.536915px;}
.y1de{bottom:149.601552px;}
.y194{bottom:149.601555px;}
.y21c{bottom:149.601556px;}
.yc1{bottom:150.389658px;}
.y230{bottom:152.639651px;}
.y369{bottom:152.827144px;}
.y33b{bottom:153.298830px;}
.y131{bottom:154.500000px;}
.y2ea{bottom:155.926758px;}
.y361{bottom:156.061519px;}
.yfe{bottom:159.209475px;}
.y2b9{bottom:159.577155px;}
.y8a{bottom:160.139654px;}
.y360{bottom:161.545894px;}
.y35{bottom:162.479181px;}
.y243{bottom:162.843761px;}
.y1e{bottom:162.896580px;}
.y39a{bottom:163.533986px;}
.y3a6{bottom:164.542968px;}
.y239{bottom:164.560547px;}
.ya1{bottom:164.603026px;}
.ye0{bottom:165.108402px;}
.y1df{bottom:166.364053px;}
.y129{bottom:167.034668px;}
.y1b1{bottom:168.354485px;}
.y21d{bottom:168.354489px;}
.yc0{bottom:174.108402px;}
.y130{bottom:175.125000px;}
.y367{bottom:176.542965px;}
.y335{bottom:177.014650px;}
.y28d{bottom:177.325200px;}
.y2e9{bottom:179.642575px;}
.y1e0{bottom:181.366983px;}
.y2cd{bottom:181.798824px;}
.y89{bottom:183.764656px;}
.y21e{bottom:185.114055px;}
.y35f{bottom:185.261715px;}
.y143{bottom:186.577158px;}
.y1d{bottom:186.615240px;}
.y38{bottom:187.323480px;}
.y15c{bottom:187.601070px;}
.y3a5{bottom:188.267574px;}
.y22f{bottom:188.340821px;}
.ydf{bottom:188.827155px;}
.y11c{bottom:191.336430px;}
.y193{bottom:191.456544px;}
.y12f{bottom:195.750000px;}
.y1e1{bottom:196.364050px;}
.y399{bottom:196.423830px;}
.ybf{bottom:197.827155px;}
.yfd{bottom:197.928225px;}
.y242{bottom:198.547856px;}
.y26c{bottom:199.151370px;}
.y199{bottom:199.640625px;}
.y334{bottom:200.736330px;}
.y38b{bottom:201.205077px;}
.y1b0{bottom:201.205083px;}
.y23f{bottom:202.042965px;}
.y21f{bottom:202.104484px;}
.y337{bottom:202.889650px;}
.y2e8{bottom:203.361324px;}
.y2cc{bottom:205.514646px;}
.y39f{bottom:207.574215px;}
.y88{bottom:208.889656px;}
.y383{bottom:210.111330px;}
.y142{bottom:210.295902px;}
.y1c{bottom:210.334080px;}
.y305{bottom:210.949225px;}
.y1e2{bottom:211.364053px;}
.y11e{bottom:211.961430px;}
.y3a4{bottom:211.983396px;}
.yde{bottom:212.545905px;}
.y26b{bottom:213.855471px;}
.y192{bottom:215.173830px;}
.y220{bottom:218.864055px;}
.ybe{bottom:221.545905px;}
.y15b{bottom:223.226070px;}
.y33a{bottom:224.455080px;}
.y28b{bottom:224.730474px;}
.y38a{bottom:224.920900px;}
.y1af{bottom:224.923827px;}
.y37a{bottom:225.111330px;}
.y1e3{bottom:226.366983px;}
.y2e7{bottom:227.083005px;}
.y269{bottom:228.855471px;}
.y2cb{bottom:229.230465px;}
.y2b8{bottom:230.170905px;}
.y28c{bottom:233.730474px;}
.y87{bottom:234.014656px;}
.y1b{bottom:234.052830px;}
.y2a5{bottom:234.105465px;}
.y241{bottom:234.249026px;}
.y304{bottom:234.673840px;}
.y3a3{bottom:235.699215px;}
.yfc{bottom:236.646981px;}
.y26e{bottom:239.698245px;}
.y267{bottom:240.556644px;}
.y1e4{bottom:241.364051px;}
.y39e{bottom:246.292957px;}
.y1ae{bottom:248.642580px;}
.y268{bottom:249.556644px;}
.y191{bottom:250.800300px;}
.ydd{bottom:252.577154px;}
.y11b{bottom:254.033208px;}
.y35b{bottom:255.861330px;}
.y141{bottom:257.733405px;}
.y1a{bottom:257.771490px;}
.y303{bottom:258.389658px;}
.y15a{bottom:258.851070px;}
.y86{bottom:259.139656px;}
.yfb{bottom:260.365725px;}
.ybd{bottom:261.577154px;}
.y201{bottom:262.045901px;}
.y379{bottom:263.830080px;}
.y2e6{bottom:265.798830px;}
.y2a4{bottom:266.730466px;}
.y397{bottom:267.017580px;}
.y34{bottom:267.292239px;}
.y2ca{bottom:269.261714px;}
.y1c0{bottom:269.736333px;}
.y240{bottom:269.950196px;}
.y197{bottom:270.234369px;}
.y1ad{bottom:272.361330px;}
.y21b{bottom:275.639652px;}
.y3a2{bottom:275.730464px;}
.y2a2{bottom:277.576170px;}
.y382{bottom:280.705080px;}
.y389{bottom:281.267580px;}
.y19{bottom:281.490330px;}
.y302{bottom:282.105475px;}
.y1dd{bottom:282.354490px;}
.yfa{bottom:284.084478px;}
.y85{bottom:284.264656px;}
.y200{bottom:285.764647px;}
.y190{bottom:286.423830px;}
.y17c{bottom:287.170905px;}
.y2a3{bottom:287.434569px;}
.y22e{bottom:288.152340px;}
.y289{bottom:292.309566px;}
.y1bf{bottom:293.455077px;}
.ydc{bottom:294.295908px;}
.y159{bottom:294.476070px;}
.y4c{bottom:294.701656px;}
.y32f{bottom:295.048834px;}
.y140{bottom:296.452158px;}
.y378{bottom:296.455080px;}
.y21a{bottom:299.358405px;}
.y2b7{bottom:300.764655px;}
.y16d{bottom:302.639655px;}
.y35a{bottom:303.295900px;}
.ybc{bottom:303.295908px;}
.y2e5{bottom:304.517575px;}
.y1aa{bottom:304.986330px;}
.y18{bottom:305.209080px;}
.y301{bottom:305.830086px;}
.y1dc{bottom:306.076170px;}
.y357{bottom:306.530275px;}
.y238{bottom:307.432614px;}
.y66{bottom:307.721190px;}
.yf9{bottom:307.803222px;}
.y262{bottom:308.135747px;}
.y84{bottom:309.389656px;}
.y1ff{bottom:309.483405px;}
.y331{bottom:310.045905px;}
.y2c9{bottom:310.983395px;}
.y287{bottom:313.013668px;}
.y265{bottom:314.138676px;}
.y329{bottom:314.355476px;}
.y1be{bottom:317.173830px;}
.y3a1{bottom:317.452155px;}
.ydb{bottom:318.014652px;}
.y13f{bottom:320.170902px;}
.y117{bottom:320.711430px;}
.y288{bottom:322.013668px;}
.y18f{bottom:322.048830px;}
.y219{bottom:323.077155px;}
.y17b{bottom:325.889655px;}
.ybb{bottom:327.014652px;}
.y356{bottom:327.017580px;}
.y2e4{bottom:328.236324px;}
.y17{bottom:328.927740px;}
.y300{bottom:329.545905px;}
.y1db{bottom:329.794920px;}
.y158{bottom:330.101070px;}
.y65{bottom:331.439205px;}
.yf8{bottom:331.521975px;}
.y1fe{bottom:333.202149px;}
.y325{bottom:333.761726px;}
.y83{bottom:334.514656px;}
.y2c8{bottom:334.699212px;}
.y25e{bottom:334.839849px;}
.y16b{bottom:335.264649px;}
.y4b{bottom:335.576655px;}
.y11a{bottom:335.711430px;}
.y1bd{bottom:340.892580px;}
.yda{bottom:341.733405px;}
.y25f{bottom:343.839849px;}
.y13e{bottom:343.889655px;}
.y260{bottom:344.707037px;}
.y29e{bottom:346.013670px;}
.y33{bottom:347.261349px;}
.y17a{bottom:349.608405px;}
.yba{bottom:350.733405px;}
.y359{bottom:350.736330px;}
.y381{bottom:351.298834px;}
.y29c{bottom:351.714842px;}
.y388{bottom:351.861330px;}
.y2e3{bottom:351.958005px;}
.y16{bottom:352.646580px;}
.yf7{bottom:355.240725px;}
.y3a0{bottom:356.170891px;}
.y1fd{bottom:356.920911px;}
.y323{bottom:357.486334px;}
.y18e{bottom:357.675300px;}
.y114{bottom:357.979985px;}
.y2c7{bottom:358.423823px;}
.y82{bottom:359.639656px;}
.y218{bottom:361.795902px;}
.yd9{bottom:365.452155px;}
.y157{bottom:365.726070px;}
.y29d{bottom:366.714842px;}
.y377{bottom:367.048830px;}
.y13d{bottom:367.608405px;}
.y2ff{bottom:368.267583px;}
.y1da{bottom:368.852806px;}
.y64{bottom:370.158690px;}
.y2b6{bottom:371.358405px;}
.y167{bottom:372.108405px;}
.y171{bottom:373.233405px;}
.yb9{bottom:374.452155px;}
.y380{bottom:375.014655px;}
.y15{bottom:376.365330px;}
.y29a{bottom:377.560545px;}
.y1bc{bottom:379.611327px;}
.y286{bottom:380.589841px;}
.y1fc{bottom:380.639655px;}
.y32e{bottom:381.202155px;}
.y2c6{bottom:382.136715px;}
.y81{bottom:384.764656px;}
.y217{bottom:385.514655px;}
.y196{bottom:386.170905px;}
.y29b{bottom:387.418944px;}
.y179{bottom:388.327152px;}
.y2e2{bottom:390.673830px;}
.y2fe{bottom:391.983400px;}
.y283{bottom:392.293944px;}
.y18d{bottom:393.298830px;}
.y63{bottom:393.876714px;}
.yf6{bottom:395.271974px;}
.y16a{bottom:397.983405px;}
.y14{bottom:400.083990px;}
.y284{bottom:401.293944px;}
.y156{bottom:401.351070px;}
.y285{bottom:402.161132px;}
.y1d5{bottom:402.257810px;}
.y25c{bottom:402.418941px;}
.y1bb{bottom:403.330080px;}
.y1fb{bottom:404.358408px;}
.yd8{bottom:405.483404px;}
.y170{bottom:405.858405px;}
.y13c{bottom:406.327152px;}
.y216{bottom:409.233405px;}
.y80{bottom:409.889656px;}
.y178{bottom:412.045905px;}
.y25a{bottom:414.123044px;}
.yb8{bottom:414.483404px;}
.y2c4{bottom:414.767580px;}
.y4a{bottom:415.545408px;}
.y2fd{bottom:415.699222px;}
.y235{bottom:415.965816px;}
.y62{bottom:417.595836px;}
.y9f{bottom:419.478481px;}
.y351{bottom:421.330084px;}
.y387{bottom:422.455080px;}
.y25b{bottom:423.123044px;}
.y13{bottom:423.802830px;}
.y1ba{bottom:427.048830px;}
.y30{bottom:427.230468px;}
.y1fa{bottom:428.077152px;}
.y18c{bottom:428.923830px;}
.y2e1{bottom:429.392580px;}
.y13b{bottom:430.045905px;}
.y7f{bottom:435.014656px;}
.y177{bottom:435.764655px;}
.y155{bottom:436.976070px;}
.yf5{bottom:436.990725px;}
.y376{bottom:437.642580px;}
.y2fc{bottom:439.423830px;}
.y49{bottom:440.389524px;}
.y61{bottom:441.314949px;}
.y2b5{bottom:441.952155px;}
.y22a{bottom:442.669919px;}
.y165{bottom:442.702155px;}
.y111{bottom:444.461430px;}
.y37f{bottom:445.608405px;}
.y297{bottom:445.998047px;}
.yd7{bottom:447.202152px;}
.y12{bottom:447.521580px;}
.y215{bottom:447.952151px;}
.y22c{bottom:451.669919px;}
.y31c{bottom:451.795895px;}
.y1f9{bottom:451.795905px;}
.y2f{bottom:452.074584px;}
.y396{bottom:452.455080px;}
.y2e0{bottom:453.111324px;}
.y13a{bottom:453.764655px;}
.yb7{bottom:456.202155px;}
.y195{bottom:456.764649px;}
.y27d{bottom:459.870121px;}
.y7e{bottom:460.139656px;}
.yf4{bottom:460.709475px;}
.y299{bottom:460.998047px;}
.y276{bottom:462.178716px;}
.y30b{bottom:462.483395px;}
.y18b{bottom:464.550300px;}
.y60{bottom:465.032964px;}
.y1b9{bottom:465.767580px;}
.y10e{bottom:466.730716px;}
.y30f{bottom:466.792965px;}
.y1d4{bottom:467.715817px;}
.y168{bottom:468.577149px;}
.y350{bottom:468.761725px;}
.yd6{bottom:470.920905px;}
.y11{bottom:471.240240px;}
.y214{bottom:471.670904px;}
.y34d{bottom:471.996100px;}
.y295{bottom:472.699218px;}
.y9e{bottom:473.388406px;}
.y176{bottom:474.483405px;}
.y1f8{bottom:475.514655px;}
.y154{bottom:475.694820px;}
.y16e{bottom:476.452149px;}
.y2df{bottom:476.833012px;}
.y314{bottom:477.480465px;}
.y34f{bottom:477.480476px;}
.y2fb{bottom:478.136715px;}
.y16f{bottom:478.702149px;}
.y318{bottom:479.824215px;}
.yb6{bottom:479.920899px;}
.y259{bottom:481.699217px;}
.y296{bottom:481.699218px;}
.y7d{bottom:485.264656px;}
.y5f{bottom:488.752077px;}
.y1b8{bottom:489.486333px;}
.y395{bottom:491.176758px;}
.y34c{bottom:492.486334px;}
.y386{bottom:493.048830px;}
.y257{bottom:493.403319px;}
.y139{bottom:493.795906px;}
.yd5{bottom:494.639655px;}
.y10{bottom:494.959080px;}
.y213{bottom:495.389655px;}
.y9d{bottom:499.327155px;}
.y153{bottom:499.413570px;}
.yf3{bottom:499.428228px;}
.y18a{bottom:500.173830px;}
.y2de{bottom:500.548830px;}
.y321{bottom:501.199215px;}
.y258{bottom:502.403319px;}
.y173{bottom:502.608405px;}
.yb5{bottom:503.639661px;}
.y175{bottom:507.108405px;}
.y2c3{bottom:509.080080px;}
.y226{bottom:510.249030px;}
.y7c{bottom:510.389656px;}
.y5e{bottom:512.471195px;}
.y2b4{bottom:512.545905px;}
.y1b7{bottom:513.205077px;}
.y2fa{bottom:513.764655px;}
.y1f7{bottom:514.233405px;}
.y394{bottom:514.892575px;}
.y37e{bottom:516.202145px;}
.y34e{bottom:516.202155px;}
.y9c{bottom:516.952155px;}
.y47{bottom:520.358643px;}
.yf2{bottom:523.146972px;}
.y2dd{bottom:524.267583px;}
.y309{bottom:524.920895px;}
.yf{bottom:525.649080px;}
.yb4{bottom:527.358405px;}
.y138{bottom:529.420905px;}
.yd4{bottom:530.264655px;}
.y375{bottom:530.449215px;}
.y27b{bottom:530.982426px;}
.y2e{bottom:532.043517px;}
.y212{bottom:534.108405px;}
.y7b{bottom:535.514656px;}
.y5d{bottom:536.189580px;}
.y1cf{bottom:536.411135px;}
.y1b6{bottom:536.923830px;}
.y27c{bottom:536.982426px;}
.y152{bottom:538.474395px;}
.y393{bottom:538.611324px;}
.y189{bottom:538.892580px;}
.y37d{bottom:539.917965px;}
.y293{bottom:540.281250px;}
.y46{bottom:545.202759px;}
.yf1{bottom:546.865725px;}
.y2dc{bottom:547.989259px;}
.y308{bottom:548.636715px;}
.y2f9{bottom:549.392580px;}
.y137{bottom:550.045905px;}
.yb3{bottom:551.077158px;}
.y224{bottom:551.654304px;}
.y136{bottom:551.689459px;}
.y1f6{bottom:552.952151px;}
.y10c{bottom:553.211433px;}
.y9b{bottom:554.452155px;}
.y274{bottom:557.683599px;}
.y1d2{bottom:558.228517px;}
.y7a{bottom:560.639656px;}
.y1b5{bottom:560.642580px;}
.y254{bottom:560.982421px;}
.y392{bottom:562.333005px;}
.y385{bottom:563.642579px;}
.yd3{bottom:565.889655px;}
.y275{bottom:566.683599px;}
.y374{bottom:569.170896px;}
.yf0{bottom:570.584475px;}
.y2db{bottom:571.705080px;}
.y250{bottom:572.683593px;}
.y211{bottom:572.827159px;}
.y172{bottom:573.202149px;}
.yb2{bottom:574.795902px;}
.y5c{bottom:574.908696px;}
.y1f5{bottom:576.670897px;}
.y188{bottom:577.612794px;}
.y174{bottom:577.702149px;}
.y151{bottom:577.971681px;}
.ye{bottom:579.558991px;}
.y2c2{bottom:579.673830px;}
.y252{bottom:581.683593px;}
.y2b3{bottom:583.139655px;}
.y2f8{bottom:585.011715px;}
.y79{bottom:585.764656px;}
.y349{bottom:586.795899px;}
.y384{bottom:587.358399px;}
.y292{bottom:590.683593px;}
.y9a{bottom:591.952155px;}
.y373{bottom:592.886719px;}
.y2da{bottom:595.423830px;}
.y210{bottom:596.545904px;}
.yb1{bottom:598.514655px;}
.y5b{bottom:598.627080px;}
.y1b4{bottom:599.703406px;}
.y1f4{bottom:600.389655px;}
.y391{bottom:601.048832px;}
.y187{bottom:601.330088px;}
.yd2{bottom:601.514655px;}
.y150{bottom:601.691895px;}
.yef{bottom:609.303228px;}
.y340{bottom:610.511720px;}
.y78{bottom:610.889656px;}
.y2d{bottom:612.012444px;}
.y342{bottom:613.746095px;}
.y372{bottom:616.608399px;}
.y307{bottom:619.230468px;}
.y33e{bottom:619.230470px;}
.y223{bottom:619.233399px;}
.y10a{bottom:619.889655px;}
.y20f{bottom:620.264657px;}
.yb0{bottom:622.233405px;}
.y5a{bottom:622.345830px;}
.y2f7{bottom:623.733405px;}
.y1f3{bottom:624.108399px;}
.y390{bottom:624.770507px;}
.y186{bottom:625.048841px;}
.y45{bottom:625.171875px;}
.y272{bottom:625.262696px;}
.y99{bottom:629.452155px;}
.yee{bottom:633.021972px;}
.y1b3{bottom:633.108405px;}
.y2d9{bottom:634.142580px;}
.y347{bottom:634.236329px;}
.y77{bottom:636.014656px;}
.yd1{bottom:637.139652px;}
.y12e{bottom:638.170905px;}
.y24e{bottom:640.265625px;}
.y14f{bottom:640.410645px;}
.y39d{bottom:640.889652px;}
.yd{bottom:641.750661px;}
.y20e{bottom:643.983401px;}
.y1a9{bottom:646.705076px;}
.y1f2{bottom:647.827161px;}
.y38f{bottom:648.486329px;}
.y185{bottom:648.769053px;}
.y1ce{bottom:649.142580px;}
.y371{bottom:649.233399px;}
.y291{bottom:649.265625px;}
.y270{bottom:650.132812px;}
.y2c1{bottom:650.267580px;}
.y36d{bottom:651.392579px;}
.yed{bottom:656.740725px;}
.yd0{bottom:657.764655px;}
.y346{bottom:657.952149px;}
.y2f6{bottom:659.361330px;}
.yaf{bottom:660.952158px;}
.y24b{bottom:660.966798px;}
.y76{bottom:661.139656px;}
.y39c{bottom:664.605469px;}
.y59{bottom:665.377081px;}
.y20d{bottom:667.702154px;}
.y128{bottom:667.708014px;}
.y24c{bottom:669.966798px;}
.y98{bottom:670.045905px;}
.y1a8{bottom:670.423822px;}
.y1f1{bottom:671.545905px;}
.y38e{bottom:672.205078px;}
.y184{bottom:672.486333px;}
.y2d8{bottom:672.864262px;}
.y370{bottom:672.949220px;}
.y14e{bottom:673.035645px;}
.y37b{bottom:673.702149px;}
.y2b2{bottom:675.952152px;}
.ycf{bottom:678.389655px;}
.yec{bottom:680.459475px;}
.yae{bottom:684.670902px;}
.y75{bottom:686.264656px;}
.y1cd{bottom:687.861327px;}
.y39b{bottom:688.330080px;}
.y20c{bottom:691.420905px;}
.y1a7{bottom:694.142580px;}
.y133{bottom:694.420905px;}
.y2f5{bottom:694.980465px;}
.y1f0{bottom:695.264658px;}
.y183{bottom:696.205086px;}
.y2d7{bottom:696.580080px;}
.y2b1{bottom:699.670905px;}
.y2c{bottom:699.722169px;}
.y1b2{bottom:703.702149px;}
.yad{bottom:708.389655px;}
.yc{bottom:710.624640px;}
.y38d{bottom:711.265899px;}
.y74{bottom:711.389656px;}
.y1cc{bottom:711.580080px;}
.y222{bottom:712.045899px;}
.y109{bottom:712.702152px;}
.y44{bottom:712.881219px;}
.y58{bottom:716.737155px;}
.yce{bottom:717.108405px;}
.y97{bottom:717.483405px;}
.y1a6{bottom:717.861324px;}
.y1ef{bottom:718.983402px;}
.yeb{bottom:719.520300px;}
.y182{bottom:719.925300px;}
.y2d6{bottom:720.298833px;}
.y2c0{bottom:720.861330px;}
.y2b0{bottom:723.389655px;}
.y221{bottom:728.545899px;}
.y20b{bottom:730.139655px;}
.y2f4{bottom:730.608405px;}
.yac{bottom:732.108405px;}
.y2b{bottom:734.825679px;}
.y1cb{bottom:735.298830px;}
.y108{bottom:736.420905px;}
.y73{bottom:736.514656px;}
.y43{bottom:739.914825px;}
.ycd{bottom:740.827155px;}
.y1a5{bottom:741.580086px;}
.y1ee{bottom:742.702155px;}
.y14c{bottom:743.627931px;}
.y2d5{bottom:744.020509px;}
.yb{bottom:752.596251px;}
.y57{bottom:757.795899px;}
.y96{bottom:758.077155px;}
.y181{bottom:758.984655px;}
.yea{bottom:759.017591px;}
.y107{bottom:760.139655px;}
.y72{bottom:761.639656px;}
.y2af{bottom:762.108401px;}
.y1a4{bottom:765.298830px;}
.y2f3{bottom:766.236330px;}
.y1ed{bottom:766.420905px;}
.y42{bottom:767.184900px;}
.y2d4{bottom:767.736330px;}
.y20a{bottom:768.858402px;}
.yab{bottom:770.827152px;}
.y1ca{bottom:774.017580px;}
.ycc{bottom:780.858404px;}
.y56{bottom:781.514661px;}
.ye9{bottom:782.737803px;}
.y2ae{bottom:785.827147px;}
.y71{bottom:786.764656px;}
.y1a3{bottom:789.017583px;}
.y2bf{bottom:791.455080px;}
.y209{bottom:792.577155px;}
.y41{bottom:794.454615px;}
.yaa{bottom:794.545905px;}
.y1c9{bottom:797.736333px;}
.y180{bottom:798.483405px;}
.y92{bottom:798.670905px;}
.y106{bottom:798.858405px;}
.y2f2{bottom:801.855465px;}
.y1ec{bottom:805.139661px;}
.y55{bottom:805.233405px;}
.ye8{bottom:806.455818px;}
.y2ad{bottom:809.545905px;}
.y70{bottom:811.889656px;}
.y1a2{bottom:812.736327px;}
.y2a{bottom:814.794804px;}
.y208{bottom:816.295905px;}
.ya9{bottom:818.264655px;}
.ya{bottom:818.541510px;}
.y1c8{bottom:821.455077px;}
.y40{bottom:822.535404px;}
.ycb{bottom:822.577155px;}
.y1eb{bottom:828.858405px;}
.y54{bottom:828.952158px;}
.y2d3{bottom:830.173830px;}
.ye7{bottom:830.173836px;}
.y17f{bottom:831.108405px;}
.y2ac{bottom:833.264649px;}
.y1a1{bottom:836.455080px;}
.y9{bottom:836.823544px;}
.y6f{bottom:837.014656px;}
.y2f1{bottom:840.577155px;}
.y1c7{bottom:845.173830px;}
.yca{bottom:846.295905px;}
.y1ea{bottom:852.577158px;}
.y53{bottom:852.670902px;}
.ye6{bottom:853.894050px;}
.y207{bottom:855.014655px;}
.y8{bottom:855.105480px;}
.ya8{bottom:856.983408px;}
.y2ab{bottom:856.983411px;}
.y3f{bottom:857.638920px;}
.y1a0{bottom:860.173830px;}
.y105{bottom:861.295905px;}
.y2be{bottom:862.048830px;}
.y6e{bottom:862.139656px;}
.y1c6{bottom:868.892580px;}
.y14b{bottom:868.892583px;}
.y2d2{bottom:868.895511px;}
.y91{bottom:869.827155px;}
.y122{bottom:874.420899px;}
.y1e9{bottom:876.295902px;}
.y52{bottom:876.389655px;}
.y7{bottom:878.842370px;}
.y2f0{bottom:879.298824px;}
.ya7{bottom:880.702152px;}
.y2aa{bottom:880.702155px;}
.yc9{bottom:885.014652px;}
.y104{bottom:885.014655px;}
.y6d{bottom:887.264656px;}
.y164{bottom:891.670905px;}
.y14a{bottom:892.611327px;}
.y2d1{bottom:892.611330px;}
.ye5{bottom:892.611336px;}
.y206{bottom:893.733402px;}
.y28{bottom:894.763737px;}
.y19f{bottom:898.892577px;}
.y1e8{bottom:900.014655px;}
.y51{bottom:900.108405px;}
.y17d{bottom:901.702149px;}
.y2ef{bottom:903.014646px;}
.ya6{bottom:904.420905px;}
.y2a9{bottom:904.420908px;}
.y1c5{bottom:907.611333px;}
.yc8{bottom:908.733405px;}
.y90{bottom:910.420905px;}
.y6{bottom:910.428065px;}
.y163{bottom:912.295908px;}
.y6c{bottom:912.389656px;}
.y149{bottom:916.331544px;}
.ye4{bottom:916.331550px;}
.y205{bottom:917.452155px;}
.y19e{bottom:922.611330px;}
.y103{bottom:923.733405px;}
.y2ee{bottom:926.730465px;}
.y2a8{bottom:928.139652px;}
.ya5{bottom:928.139655px;}
.y1c4{bottom:931.330077px;}
.y2d0{bottom:931.333005px;}
.yc7{bottom:932.452155px;}
.y2bb{bottom:932.642579px;}
.y162{bottom:932.920902px;}
.y6b{bottom:937.514656px;}
.y3d{bottom:937.608033px;}
.y120{bottom:937.939454px;}
.y148{bottom:940.048830px;}
.y204{bottom:941.170905px;}
.y5{bottom:942.013760px;}
.y50{bottom:943.139655px;}
.y19d{bottom:946.330080px;}
.y102{bottom:947.452155px;}
.y8f{bottom:947.920905px;}
.y2a7{bottom:951.858405px;}
.y161{bottom:953.545905px;}
.y1c3{bottom:955.048830px;}
.ye3{bottom:955.048836px;}
.y2ed{bottom:962.358396px;}
.y1e7{bottom:962.452146px;}
.y6a{bottom:962.639656px;}
.ya4{bottom:966.858402px;}
.y19c{bottom:970.048830px;}
.y2cf{bottom:970.048832px;}
.yc6{bottom:971.170896px;}
.y4{bottom:971.729595px;}
.y160{bottom:974.170905px;}
.y26{bottom:974.732665px;}
.y2a6{bottom:975.577155px;}
.y1c2{bottom:978.767580px;}
.ye2{bottom:978.769050px;}
.y203{bottom:979.889655px;}
.y2ec{bottom:982.980465px;}
.y8d{bottom:985.420899px;}
.y101{bottom:986.170899px;}
.y69{bottom:987.764656px;}
.ya3{bottom:990.577146px;}
.y19b{bottom:993.767576px;}
.y2ce{bottom:993.770507px;}
.yc5{bottom:994.889649px;}
.y4f{bottom:995.077149px;}
.y3{bottom:997.525497px;}
.y15f{bottom:1009.795899px;}
.y1e6{bottom:1009.889649px;}
.y100{bottom:1009.889652px;}
.y68{bottom:1012.889650px;}
.ya2{bottom:1014.295899px;}
.y147{bottom:1017.486329px;}
.y3c{bottom:1017.576966px;}
.ye1{bottom:1017.828399px;}
.yc4{bottom:1018.608399px;}
.y8b{bottom:1022.920899px;}
.y11f{bottom:1024.420899px;}
.y4e{bottom:1026.014650px;}
.y2ba{bottom:1026.952149px;}
.yff{bottom:1033.608396px;}
.y1e5{bottom:1033.608399px;}
.y67{bottom:1038.014649px;}
.y19a{bottom:1041.205078px;}
.y146{bottom:1041.206542px;}
.y202{bottom:1042.327149px;}
.y15e{bottom:1045.420899px;}
.yc3{bottom:1057.327149px;}
.y2eb{bottom:1057.330080px;}
.y2{bottom:1071.372069px;}
.y4d{bottom:1078.045898px;}
.y145{bottom:1080.265899px;}
.y25{bottom:1080.442383px;}
.yc2{bottom:1081.045899px;}
.y21{bottom:1097.545899px;}
.y1{bottom:1137.527344px;}
.h1d{height:23.011200px;}
.h1e{height:28.764000px;}
.h19{height:36.375000px;}
.h18{height:39.468750px;}
.ha{height:40.781249px;}
.h67{height:43.254000px;}
.h5d{height:43.681640px;}
.h4b{height:45.615233px;}
.h48{height:47.402343px;}
.h50{height:47.939999px;}
.h1{height:47.988281px;}
.h42{height:48.049806px;}
.h17{height:48.840001px;}
.h9{height:48.937500px;}
.h5{height:49.170001px;}
.h6d{height:50.337000px;}
.h12{height:50.343121px;}
.h3b{height:51.951131px;}
.h22{height:52.142579px;}
.h79{height:52.668001px;}
.h6{height:52.734001px;}
.h16{height:52.866001px;}
.h7a{height:53.718750px;}
.h14{height:54.356964px;}
.h78{height:54.471679px;}
.h1f{height:54.919767px;}
.h15{height:55.453127px;}
.h59{height:56.586913px;}
.h4c{height:57.451171px;}
.h53{height:57.454101px;}
.h56{height:57.457032px;}
.h13{height:57.720002px;}
.hb{height:57.796875px;}
.h45{height:58.865378px;}
.h3d{height:58.865396px;}
.h1b{height:58.865402px;}
.h7b{height:58.865405px;}
.h3e{height:58.865414px;}
.h40{height:58.944602px;}
.h38{height:59.298505px;}
.h7{height:59.496416px;}
.h4{height:59.985352px;}
.h2f{height:62.341356px;}
.h3{height:63.984377px;}
.h21{height:65.553222px;}
.h4a{height:66.451171px;}
.h47{height:66.454101px;}
.h55{height:66.457032px;}
.h5b{height:67.312500px;}
.h43{height:67.570312px;}
.h20{height:69.468750px;}
.h28{height:72.000000px;}
.h77{height:76.028320px;}
.h10{height:76.593750px;}
.hd{height:76.593933px;}
.hc{height:76.594116px;}
.h5c{height:77.288086px;}
.h58{height:78.155274px;}
.h57{height:78.158204px;}
.h75{height:78.187500px;}
.h2{height:81.000000px;}
.h23{height:85.355713px;}
.h25{height:85.356446px;}
.h1c{height:86.906250px;}
.h2d{height:87.000000px;}
.h54{height:87.155274px;}
.h41{height:89.387695px;}
.h6e{height:91.034180px;}
.h4e{height:93.155274px;}
.h5a{height:93.158203px;}
.h63{height:93.184570px;}
.h64{height:93.187500px;}
.h73{height:98.668945px;}
.h62{height:98.859375px;}
.hf{height:101.438049px;}
.he{height:101.438232px;}
.h76{height:101.903320px;}
.h2e{height:101.920899px;}
.h5e{height:102.158203px;}
.h24{height:107.625000px;}
.h49{height:107.859375px;}
.h74{height:108.187500px;}
.h6f{height:108.190429px;}
.h1a{height:110.625000px;}
.h70{height:113.674804px;}
.h61{height:113.859375px;}
.h3c{height:116.906250px;}
.h6b{height:116.909179px;}
.h26{height:122.625000px;}
.h27{height:128.250000px;}
.h44{height:133.028320px;}
.h6c{height:136.315429px;}
.h69{height:138.281250px;}
.h11{height:139.125000px;}
.h52{height:139.500000px;}
.h68{height:140.625000px;}
.h29{height:148.875000px;}
.h66{height:151.312500px;}
.h65{height:155.622070px;}
.h5f{height:161.958984px;}
.h7c{height:162.093750px;}
.h60{height:164.267579px;}
.h71{height:164.340821px;}
.h72{height:164.343750px;}
.h8{height:165.454101px;}
.h6a{height:166.309570px;}
.h2c{height:178.875000px;}
.h37{height:194.718750px;}
.h4f{height:201.688476px;}
.h2a{height:205.587891px;}
.h4d{height:220.968750px;}
.h2b{height:235.125000px;}
.h51{height:307.078125px;}
.h3f{height:392.718750px;}
.h30{height:428.718750px;}
.h36{height:518.718750px;}
.h35{height:523.218750px;}
.h39{height:577.218750px;}
.h34{height:617.718750px;}
.h31{height:618.843750px;}
.h33{height:619.968750px;}
.h32{height:761.156250px;}
.h3a{height:826.186530px;}
.h46{height:894.000000px;}
.h0{height:1263.000000px;}
.w1a{width:33.750000px;}
.w2c{width:43.875000px;}
.w1b{width:65.250000px;}
.w6{width:76.500000px;}
.w2d{width:77.625000px;}
.w21{width:84.375000px;}
.w28{width:85.500000px;}
.w15{width:88.875000px;}
.w30{width:90.000000px;}
.w2a{width:95.625000px;}
.w14{width:97.875000px;}
.w29{width:99.000000px;}
.w16{width:100.125000px;}
.w7{width:104.625000px;}
.w13{width:106.875000px;}
.w25{width:112.500000px;}
.w27{width:115.875000px;}
.w26{width:119.250000px;}
.w9{width:128.250000px;}
.w2f{width:138.375000px;}
.wd{width:145.125000px;}
.wa{width:173.250000px;}
.w8{width:176.625000px;}
.w22{width:181.125000px;}
.w1c{width:185.625000px;}
.w17{width:194.625000px;}
.w1f{width:196.875000px;}
.w2b{width:207.000000px;}
.w2{width:222.750000px;}
.w4{width:223.875000px;}
.wf{width:230.625000px;}
.w1e{width:272.250000px;}
.w1d{width:283.500000px;}
.we{width:295.875000px;}
.w12{width:336.375000px;}
.w23{width:349.875000px;}
.w3{width:442.125000px;}
.w5{width:444.375000px;}
.wb{width:499.500000px;}
.w2e{width:591.750000px;}
.w20{width:617.625000px;}
.w11{width:659.250000px;}
.wc{width:673.875000px;}
.w10{width:675.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.w19{width:1042.875000px;}
.w31{width:1044.000000px;}
.w24{width:1047.375000px;}
.w18{width:1263.000000px;}
.x0{left:0.000000px;}
.x5e{left:2.250000px;}
.x30{left:7.690430px;}
.x27{left:9.435059px;}
.x6a{left:10.695122px;}
.x25{left:11.860840px;}
.x6e{left:12.951748px;}
.x69{left:14.742579px;}
.x32{left:16.004883px;}
.x67{left:17.176420px;}
.x74{left:18.217744px;}
.x24{left:19.696289px;}
.x22{left:22.130859px;}
.x7a{left:23.492941px;}
.x73{left:24.928923px;}
.x2f{left:26.556153px;}
.x71{left:28.259145px;}
.x1b{left:30.717774px;}
.x29{left:33.785156px;}
.x34{left:34.848633px;}
.x11{left:36.395508px;}
.x51{left:38.523817px;}
.x72{left:40.745313px;}
.x2b{left:44.784668px;}
.xc{left:47.509278px;}
.x13{left:49.376953px;}
.x1e{left:54.426269px;}
.x18{left:56.834472px;}
.x31{left:59.312988px;}
.x17{left:60.547852px;}
.x2d{left:61.690430px;}
.x33{left:63.562500px;}
.xf{left:65.293946px;}
.x15{left:72.448243px;}
.x1d{left:83.346680px;}
.x12{left:87.943359px;}
.x1a{left:94.108887px;}
.x14{left:100.129394px;}
.x64{left:105.750000px;}
.x1{left:108.000000px;}
.x3b{left:109.125000px;}
.x63{left:112.659851px;}
.x49{left:117.000000px;}
.x3d{left:120.671888px;}
.x40{left:122.680138px;}
.x9{left:125.237186px;}
.x6{left:127.292308px;}
.x58{left:128.357940px;}
.x26{left:129.375001px;}
.x3f{left:132.173956px;}
.x39{left:135.000000px;}
.x10{left:138.871582px;}
.x5a{left:144.000000px;}
.x23{left:146.162109px;}
.x60{left:147.375000px;}
.x48{left:151.089684px;}
.x45{left:155.250000px;}
.x19{left:158.844727px;}
.x3a{left:162.000000px;}
.x1f{left:176.875488px;}
.x4b{left:179.134329px;}
.x28{left:187.875000px;}
.x46{left:189.000000px;}
.x7d{left:190.499565px;}
.x8{left:193.061431px;}
.x4f{left:194.701114px;}
.xe{left:204.407224px;}
.x1c{left:210.458498px;}
.x65{left:211.500000px;}
.x3e{left:213.750000px;}
.x53{left:217.125000px;}
.x61{left:232.875000px;}
.x2{left:243.000000px;}
.x41{left:255.375000px;}
.x35{left:282.375000px;}
.x3c{left:283.500000px;}
.x54{left:294.750000px;}
.x2a{left:295.875000px;}
.x4e{left:308.812500px;}
.x4d{left:310.500000px;}
.x7{left:313.882286px;}
.x4{left:317.288430px;}
.x66{left:325.125000px;}
.xd{left:334.125000px;}
.x16{left:335.250000px;}
.x7f{left:356.120055px;}
.x38{left:373.083086px;}
.xa{left:374.211968px;}
.x80{left:375.856515px;}
.x55{left:393.750000px;}
.x5b{left:397.125000px;}
.x62{left:415.125000px;}
.x5{left:446.456700px;}
.x2c{left:475.875000px;}
.x56{left:483.750000px;}
.x75{left:525.375000px;}
.x4a{left:527.625000px;}
.x42{left:552.375000px;}
.x68{left:562.500000px;}
.x44{left:577.687500px;}
.x57{left:585.000000px;}
.x20{left:588.206700px;}
.xb{left:590.625000px;}
.x2e{left:655.875000px;}
.x6b{left:663.750000px;}
.x50{left:664.875000px;}
.x37{left:672.493829px;}
.x5c{left:681.750000px;}
.x3{left:687.206700px;}
.x76{left:733.500000px;}
.x52{left:765.968242px;}
.x59{left:767.138974px;}
.x43{left:769.002109px;}
.x4c{left:770.172773px;}
.x47{left:772.711987px;}
.x36{left:775.778828px;}
.x21{left:778.812694px;}
.x6c{left:780.750000px;}
.x7c{left:858.937500px;}
.x6d{left:867.375000px;}
.x78{left:875.250000px;}
.x7e{left:938.542309px;}
.x77{left:941.625000px;}
.x5d{left:955.125000px;}
.x6f{left:967.500000px;}
.x79{left:1014.750000px;}
.x70{left:1064.250000px;}
.x5f{left:1136.713961px;}
.x7b{left:1137.736249px;}
@media print{
.v5{vertical-align:-26.123999pt;}
.v6{vertical-align:-24.199996pt;}
.v3{vertical-align:-22.000000pt;}
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.200001pt;}
.v4{vertical-align:26.123995pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:6.517354pt;}
.wsf{word-spacing:-34.437334pt;}
.ws0{word-spacing:-17.472000pt;}
.ws3{word-spacing:-16.426667pt;}
.wsc{word-spacing:-16.299479pt;}
.ws4{word-spacing:-16.016000pt;}
.ws9{word-spacing:-15.840000pt;}
.ws2{word-spacing:-15.718750pt;}
.wse{word-spacing:-15.288000pt;}
.wsa{word-spacing:-14.580730pt;}
.wsd{word-spacing:-13.229167pt;}
.ws8{word-spacing:-11.648000pt;}
.wsb{word-spacing:-9.856000pt;}
.ws5{word-spacing:-9.609600pt;}
.ws7{word-spacing:-8.736000pt;}
.ws6{word-spacing:-6.988800pt;}
.ws1{word-spacing:0.000000pt;}
._41{margin-left:-8.637442pt;}
._11{margin-left:-6.946183pt;}
._0{margin-left:-5.887652pt;}
._1d{margin-left:-4.129448pt;}
._2{margin-left:-3.093750pt;}
._1{margin-left:-1.407691pt;}
._3{width:1.562502pt;}
._4{width:2.464843pt;}
._5{width:3.429325pt;}
._6{width:4.451915pt;}
._7{width:7.911786pt;}
._37{width:8.803191pt;}
._38{width:10.095992pt;}
._8{width:11.224578pt;}
._9{width:12.589408pt;}
._10{width:15.107185pt;}
._b{width:19.289703pt;}
._f{width:20.668172pt;}
._a{width:23.911943pt;}
._3c{width:27.916665pt;}
._40{width:31.372078pt;}
._3b{width:32.494640pt;}
._39{width:35.465751pt;}
._3a{width:36.420928pt;}
._d{width:39.252795pt;}
._e{width:40.800680pt;}
._c{width:44.059728pt;}
._3f{width:56.182347pt;}
._3e{width:59.882448pt;}
._36{width:77.060247pt;}
._3d{width:80.938145pt;}
._32{width:347.018482pt;}
._25{width:396.178506pt;}
._15{width:554.190970pt;}
._18{width:662.782597pt;}
._23{width:746.259026pt;}
._30{width:1120.157829pt;}
._33{width:1138.959884pt;}
._29{width:1149.130548pt;}
._19{width:1194.756601pt;}
._1e{width:1250.235083pt;}
._24{width:1263.735149pt;}
._1f{width:1265.097451pt;}
._28{width:1266.346825pt;}
._27{width:1287.824535pt;}
._1a{width:1341.635221pt;}
._34{width:1471.956623pt;}
._16{width:1565.369659pt;}
._1c{width:1573.970935pt;}
._1b{width:1628.398329pt;}
._22{width:1681.091976pt;}
._2e{width:1725.157310pt;}
._14{width:1771.231931pt;}
._17{width:1789.534931pt;}
._13{width:1800.974600pt;}
._21{width:1811.265107pt;}
._31{width:1825.308474pt;}
._26{width:1855.726500pt;}
._35{width:1862.421254pt;}
._2c{width:1864.490647pt;}
._20{width:1892.467715pt;}
._2b{width:1911.365006pt;}
._2d{width:1915.808398pt;}
._2f{width:1926.941314pt;}
._2a{width:1955.623498pt;}
._12{width:2063.625273pt;}
.fsa{font-size:25.600000pt;}
.fsc{font-size:32.000000pt;}
.fs9{font-size:35.200001pt;}
.fsd{font-size:37.333332pt;}
.fsf{font-size:39.581816pt;}
.fsb{font-size:42.666668pt;}
.fs10{font-size:48.000000pt;}
.fs6{font-size:53.333332pt;}
.fs11{font-size:56.000000pt;}
.fs4{font-size:58.666668pt;}
.fs7{font-size:60.472217pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:65.969690pt;}
.fs8{font-size:69.333336pt;}
.fs5{font-size:71.467167pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y248{bottom:0.666667pt;}
.y8e{bottom:10.666666pt;}
.y364{bottom:13.125009pt;}
.y36c{bottom:13.414062pt;}
.y8c{bottom:13.416666pt;}
.y368{bottom:13.421880pt;}
.y24{bottom:16.666667pt;}
.y37c{bottom:19.750000pt;}
.y261{bottom:21.459635pt;}
.y26a{bottom:22.065098pt;}
.y298{bottom:22.065102pt;}
.y2a1{bottom:22.065103pt;}
.y22d{bottom:22.065104pt;}
.y27a{bottom:22.067698pt;}
.y264{bottom:22.067702pt;}
.y290{bottom:22.067703pt;}
.y24d{bottom:22.067708pt;}
.y237{bottom:22.067711pt;}
.y256{bottom:22.067715pt;}
.y234{bottom:22.067716pt;}
.y253{bottom:22.070314pt;}
.y110{bottom:23.999347pt;}
.y12d{bottom:23.999992pt;}
.y116{bottom:23.999998pt;}
.y10d{bottom:23.999999pt;}
.y121{bottom:24.000003pt;}
.y127{bottom:24.000005pt;}
.y320{bottom:25.580729pt;}
.y31b{bottom:25.585947pt;}
.y313{bottom:25.588547pt;}
.y1d1{bottom:25.969395pt;}
.y1d3{bottom:25.972006pt;}
.y1d9{bottom:25.972008pt;}
.y266{bottom:26.065098pt;}
.y229{bottom:26.065103pt;}
.y22b{bottom:26.065104pt;}
.y26d{bottom:26.067703pt;}
.y225{bottom:26.067709pt;}
.y28a{bottom:26.067711pt;}
.y247{bottom:26.067716pt;}
.y251{bottom:26.070314pt;}
.y282{bottom:26.070315pt;}
.y23e{bottom:26.070322pt;}
.y26f{bottom:26.166667pt;}
.y339{bottom:26.455724pt;}
.y36f{bottom:26.455729pt;}
.y32d{bottom:26.463537pt;}
.y345{bottom:26.463541pt;}
.y324{bottom:26.744782pt;}
.y33d{bottom:26.744786pt;}
.y2bd{bottom:26.744788pt;}
.y348{bottom:26.744790pt;}
.y2c5{bottom:26.747400pt;}
.y166{bottom:26.749976pt;}
.y398{bottom:26.749994pt;}
.y10b{bottom:26.750000pt;}
.y17e{bottom:26.750002pt;}
.y16c{bottom:26.750005pt;}
.y169{bottom:26.750006pt;}
.y333{bottom:26.752600pt;}
.y328{bottom:26.752604pt;}
.y34b{bottom:26.752605pt;}
.y30a{bottom:26.752609pt;}
.y317{bottom:26.752613pt;}
.y198{bottom:27.054717pt;}
.y14d{bottom:27.263024pt;}
.y48{bottom:29.880206pt;}
.y39{bottom:29.880208pt;}
.y3e{bottom:29.880366pt;}
.y29{bottom:29.880371pt;}
.y27{bottom:29.880534pt;}
.y32{bottom:29.880539pt;}
.y37{bottom:29.880696pt;}
.y363{bottom:33.250009pt;}
.y23{bottom:33.609374pt;}
.y95{bottom:34.500000pt;}
.y36b{bottom:34.502609pt;}
.y271{bottom:39.860678pt;}
.y25d{bottom:40.468751pt;}
.y2a0{bottom:40.468756pt;}
.y255{bottom:40.471355pt;}
.y233{bottom:40.471356pt;}
.y10f{bottom:41.602214pt;}
.y115{bottom:41.602865pt;}
.y113{bottom:42.333333pt;}
.y126{bottom:42.333338pt;}
.y228{bottom:44.468743pt;}
.y24f{bottom:44.468751pt;}
.y294{bottom:44.468756pt;}
.y281{bottom:44.471355pt;}
.y246{bottom:44.471356pt;}
.y23d{bottom:44.471362pt;}
.y1d0{bottom:45.365235pt;}
.y1d8{bottom:45.367835pt;}
.y358{bottom:46.580724pt;}
.y36e{bottom:46.580729pt;}
.y338{bottom:46.585937pt;}
.y32c{bottom:46.588537pt;}
.y344{bottom:46.588541pt;}
.y35e{bottom:47.828120pt;}
.y2bc{bottom:47.830729pt;}
.y327{bottom:47.833324pt;}
.y355{bottom:47.833329pt;}
.y341{bottom:47.833332pt;}
.y1ac{bottom:47.833333pt;}
.y336{bottom:47.833337pt;}
.y322{bottom:47.838546pt;}
.y3b{bottom:51.333333pt;}
.y24a{bottom:51.666666pt;}
.y36{bottom:51.964030pt;}
.y31{bottom:51.964192pt;}
.y279{bottom:53.194004pt;}
.y362{bottom:53.372395pt;}
.y28f{bottom:53.802076pt;}
.y236{bottom:53.802084pt;}
.y263{bottom:53.804688pt;}
.y36a{bottom:55.580729pt;}
.y94{bottom:55.583333pt;}
.y12c{bottom:55.666660pt;}
.y119{bottom:55.666666pt;}
.y22{bottom:56.070312pt;}
.y31a{bottom:56.166667pt;}
.y312{bottom:57.333333pt;}
.y31f{bottom:57.333342pt;}
.y273{bottom:57.804688pt;}
.y29f{bottom:58.872396pt;}
.y112{bottom:60.666667pt;}
.y125{bottom:60.666672pt;}
.y30e{bottom:61.164062pt;}
.y366{bottom:61.166667pt;}
.y33f{bottom:61.169271pt;}
.y227{bottom:62.872397pt;}
.y280{bottom:62.874995pt;}
.y23c{bottom:62.973966pt;}
.y1d7{bottom:64.761075pt;}
.y343{bottom:66.710937pt;}
.y32b{bottom:66.713537pt;}
.y332{bottom:68.914053pt;}
.y34a{bottom:68.914061pt;}
.y354{bottom:68.914062pt;}
.y33c{bottom:68.914066pt;}
.y1ab{bottom:68.916667pt;}
.y326{bottom:68.919271pt;}
.y316{bottom:68.921880pt;}
.y3a{bottom:69.666668pt;}
.y249{bottom:70.000001pt;}
.y28e{bottom:72.205730pt;}
.y232{bottom:72.208343pt;}
.y118{bottom:74.000000pt;}
.y93{bottom:76.666666pt;}
.y311{bottom:78.421880pt;}
.y11d{bottom:79.000000pt;}
.y124{bottom:79.000005pt;}
.y330{bottom:82.244782pt;}
.y30d{bottom:82.252609pt;}
.y1d6{bottom:84.156902pt;}
.y278{bottom:84.157551pt;}
.y12b{bottom:86.602860pt;}
.y32a{bottom:86.835937pt;}
.y319{bottom:87.916667pt;}
.y353{bottom:89.994782pt;}
.y35d{bottom:89.997400pt;}
.y315{bottom:90.000000pt;}
.y31e{bottom:91.752609pt;}
.y135{bottom:92.333333pt;}
.y27f{bottom:94.609368pt;}
.y245{bottom:94.609383pt;}
.y23b{bottom:95.473966pt;}
.y123{bottom:97.333333pt;}
.y310{bottom:99.500000pt;}
.y20{bottom:102.630213pt;}
.y30c{bottom:103.330729pt;}
.y231{bottom:103.945316pt;}
.y132{bottom:105.666666pt;}
.y352{bottom:111.080729pt;}
.y35c{bottom:111.083333pt;}
.y31d{bottom:112.830729pt;}
.y27e{bottom:113.013022pt;}
.y277{bottom:115.123698pt;}
.y12a{bottom:117.539060pt;}
.y1f{bottom:123.713626pt;}
.y134{bottom:124.000000pt;}
.y244{bottom:126.346356pt;}
.y23a{bottom:127.875002pt;}
.y365{bottom:130.260413pt;}
.y306{bottom:131.212493pt;}
.y15d{bottom:131.213800pt;}
.ya0{bottom:131.213801pt;}
.y1c1{bottom:131.215106pt;}
.y144{bottom:131.429693pt;}
.y38c{bottom:132.032813pt;}
.y1de{bottom:132.979157pt;}
.y194{bottom:132.979160pt;}
.y21c{bottom:132.979161pt;}
.yc1{bottom:133.679696pt;}
.y230{bottom:135.679690pt;}
.y369{bottom:135.846351pt;}
.y33b{bottom:136.265627pt;}
.y131{bottom:137.333333pt;}
.y2ea{bottom:138.601563pt;}
.y361{bottom:138.721351pt;}
.yfe{bottom:141.519533pt;}
.y2b9{bottom:141.846360pt;}
.y8a{bottom:142.346359pt;}
.y360{bottom:143.596351pt;}
.y35{bottom:144.425939pt;}
.y243{bottom:144.750010pt;}
.y1e{bottom:144.796960pt;}
.y39a{bottom:145.363543pt;}
.y3a6{bottom:146.260416pt;}
.y239{bottom:146.276042pt;}
.ya1{bottom:146.313801pt;}
.ye0{bottom:146.763024pt;}
.y1df{bottom:147.879158pt;}
.y129{bottom:148.475261pt;}
.y1b1{bottom:149.648431pt;}
.y21d{bottom:149.648434pt;}
.yc0{bottom:154.763024pt;}
.y130{bottom:155.666666pt;}
.y367{bottom:156.927080pt;}
.y335{bottom:157.346356pt;}
.y28d{bottom:157.622400pt;}
.y2e9{bottom:159.682289pt;}
.y1e0{bottom:161.215096pt;}
.y2cd{bottom:161.598955pt;}
.y89{bottom:163.346361pt;}
.y21e{bottom:164.545826pt;}
.y35f{bottom:164.677080pt;}
.y143{bottom:165.846363pt;}
.y1d{bottom:165.880213pt;}
.y38{bottom:166.509760pt;}
.y15c{bottom:166.756506pt;}
.y3a5{bottom:167.348955pt;}
.y22f{bottom:167.414063pt;}
.ydf{bottom:167.846360pt;}
.y11c{bottom:170.076827pt;}
.y193{bottom:170.183594pt;}
.y12f{bottom:174.000000pt;}
.y1e1{bottom:174.545822pt;}
.y399{bottom:174.598960pt;}
.ybf{bottom:175.846360pt;}
.yfd{bottom:175.936200pt;}
.y242{bottom:176.486983pt;}
.y26c{bottom:177.023440pt;}
.y199{bottom:177.458333pt;}
.y334{bottom:178.432293pt;}
.y38b{bottom:178.848958pt;}
.y1b0{bottom:178.848963pt;}
.y23f{bottom:179.593747pt;}
.y21f{bottom:179.648430pt;}
.y337{bottom:180.346356pt;}
.y2e8{bottom:180.765622pt;}
.y2cc{bottom:182.679685pt;}
.y39f{bottom:184.510413pt;}
.y88{bottom:185.679694pt;}
.y383{bottom:186.765627pt;}
.y142{bottom:186.929691pt;}
.y1c{bottom:186.963626pt;}
.y305{bottom:187.510422pt;}
.y1e2{bottom:187.879158pt;}
.y11e{bottom:188.410160pt;}
.y3a4{bottom:188.429685pt;}
.yde{bottom:188.929693pt;}
.y26b{bottom:190.093752pt;}
.y192{bottom:191.265626pt;}
.y220{bottom:194.545827pt;}
.ybe{bottom:196.929693pt;}
.y15b{bottom:198.423173pt;}
.y33a{bottom:199.515627pt;}
.y28b{bottom:199.760421pt;}
.y38a{bottom:199.929689pt;}
.y1af{bottom:199.932291pt;}
.y37a{bottom:200.098960pt;}
.y1e3{bottom:201.215096pt;}
.y2e7{bottom:201.851560pt;}
.y269{bottom:203.427085pt;}
.y2cb{bottom:203.760413pt;}
.y2b8{bottom:204.596360pt;}
.y28c{bottom:207.760421pt;}
.y87{bottom:208.013027pt;}
.y1b{bottom:208.046960pt;}
.y2a5{bottom:208.093747pt;}
.y241{bottom:208.221356pt;}
.y304{bottom:208.598969pt;}
.y3a3{bottom:209.510413pt;}
.yfc{bottom:210.352872pt;}
.y26e{bottom:213.065107pt;}
.y267{bottom:213.828128pt;}
.y1e4{bottom:214.545823pt;}
.y39e{bottom:218.927073pt;}
.y1ae{bottom:221.015627pt;}
.y268{bottom:221.828128pt;}
.y191{bottom:222.933600pt;}
.ydd{bottom:224.513026pt;}
.y11b{bottom:225.807296pt;}
.y35b{bottom:227.432293pt;}
.y141{bottom:229.096360pt;}
.y1a{bottom:229.130213pt;}
.y303{bottom:229.679696pt;}
.y15a{bottom:230.089840pt;}
.y86{bottom:230.346361pt;}
.yfb{bottom:231.436200pt;}
.ybd{bottom:232.513026pt;}
.y201{bottom:232.929690pt;}
.y379{bottom:234.515627pt;}
.y2e6{bottom:236.265626pt;}
.y2a4{bottom:237.093748pt;}
.y397{bottom:237.348960pt;}
.y34{bottom:237.593101pt;}
.y2ca{bottom:239.343746pt;}
.y1c0{bottom:239.765629pt;}
.y240{bottom:239.955730pt;}
.y197{bottom:240.208328pt;}
.y1ad{bottom:242.098960pt;}
.y21b{bottom:245.013024pt;}
.y3a2{bottom:245.093746pt;}
.y2a2{bottom:246.734373pt;}
.y382{bottom:249.515627pt;}
.y389{bottom:250.015627pt;}
.y19{bottom:250.213626pt;}
.y302{bottom:250.760422pt;}
.y1dd{bottom:250.981769pt;}
.yfa{bottom:252.519536pt;}
.y85{bottom:252.679694pt;}
.y200{bottom:254.013020pt;}
.y190{bottom:254.598960pt;}
.y17c{bottom:255.263026pt;}
.y2a3{bottom:255.497395pt;}
.y22e{bottom:256.135413pt;}
.y289{bottom:259.830725pt;}
.y1bf{bottom:260.848957pt;}
.ydc{bottom:261.596363pt;}
.y159{bottom:261.756506pt;}
.y4c{bottom:261.957028pt;}
.y32f{bottom:262.265631pt;}
.y140{bottom:263.513029pt;}
.y378{bottom:263.515627pt;}
.y21a{bottom:266.096360pt;}
.y2b7{bottom:267.346360pt;}
.y16d{bottom:269.013027pt;}
.y35a{bottom:269.596356pt;}
.ybc{bottom:269.596363pt;}
.y2e5{bottom:270.682289pt;}
.y1aa{bottom:271.098960pt;}
.y18{bottom:271.296960pt;}
.y301{bottom:271.848965pt;}
.y1dc{bottom:272.067707pt;}
.y357{bottom:272.471356pt;}
.y238{bottom:273.273435pt;}
.y66{bottom:273.529946pt;}
.yf9{bottom:273.602864pt;}
.y262{bottom:273.898441pt;}
.y84{bottom:275.013027pt;}
.y1ff{bottom:275.096360pt;}
.y331{bottom:275.596360pt;}
.y2c9{bottom:276.429684pt;}
.y287{bottom:278.234372pt;}
.y265{bottom:279.234379pt;}
.y329{bottom:279.427089pt;}
.y1be{bottom:281.932293pt;}
.y3a1{bottom:282.179693pt;}
.ydb{bottom:282.679691pt;}
.y13f{bottom:284.596357pt;}
.y117{bottom:285.076827pt;}
.y288{bottom:286.234372pt;}
.y18f{bottom:286.265626pt;}
.y219{bottom:287.179693pt;}
.y17b{bottom:289.679693pt;}
.ybb{bottom:290.679691pt;}
.y356{bottom:290.682293pt;}
.y2e4{bottom:291.765622pt;}
.y17{bottom:292.380213pt;}
.y300{bottom:292.929693pt;}
.y1db{bottom:293.151040pt;}
.y158{bottom:293.423173pt;}
.y65{bottom:294.612626pt;}
.yf8{bottom:294.686200pt;}
.y1fe{bottom:296.179688pt;}
.y325{bottom:296.677089pt;}
.y83{bottom:297.346361pt;}
.y2c8{bottom:297.510411pt;}
.y25e{bottom:297.635421pt;}
.y16b{bottom:298.013021pt;}
.y4b{bottom:298.290360pt;}
.y11a{bottom:298.410160pt;}
.y1bd{bottom:303.015626pt;}
.yda{bottom:303.763027pt;}
.y25f{bottom:305.635421pt;}
.y13e{bottom:305.679693pt;}
.y260{bottom:306.406255pt;}
.y29e{bottom:307.567707pt;}
.y33{bottom:308.676755pt;}
.y17a{bottom:310.763026pt;}
.yba{bottom:311.763027pt;}
.y359{bottom:311.765627pt;}
.y381{bottom:312.265631pt;}
.y29c{bottom:312.635415pt;}
.y388{bottom:312.765627pt;}
.y2e3{bottom:312.851560pt;}
.y16{bottom:313.463626pt;}
.yf7{bottom:315.769533pt;}
.y3a0{bottom:316.596348pt;}
.y1fd{bottom:317.263032pt;}
.y323{bottom:317.765631pt;}
.y18e{bottom:317.933600pt;}
.y114{bottom:318.204431pt;}
.y2c7{bottom:318.598954pt;}
.y82{bottom:319.679694pt;}
.y218{bottom:321.596357pt;}
.yd9{bottom:324.846360pt;}
.y157{bottom:325.089840pt;}
.y29d{bottom:325.968748pt;}
.y377{bottom:326.265627pt;}
.y13d{bottom:326.763026pt;}
.y2ff{bottom:327.348963pt;}
.y1da{bottom:327.869161pt;}
.y64{bottom:329.029947pt;}
.y2b6{bottom:330.096360pt;}
.y167{bottom:330.763027pt;}
.y171{bottom:331.763027pt;}
.yb9{bottom:332.846360pt;}
.y380{bottom:333.346360pt;}
.y15{bottom:334.546960pt;}
.y29a{bottom:335.609373pt;}
.y1bc{bottom:337.432291pt;}
.y286{bottom:338.302081pt;}
.y1fc{bottom:338.346360pt;}
.y32e{bottom:338.846360pt;}
.y2c6{bottom:339.677080pt;}
.y81{bottom:342.013027pt;}
.y217{bottom:342.679693pt;}
.y196{bottom:343.263027pt;}
.y29b{bottom:344.372395pt;}
.y179{bottom:345.179691pt;}
.y2e2{bottom:347.265626pt;}
.y2fe{bottom:348.429689pt;}
.y283{bottom:348.705728pt;}
.y18d{bottom:349.598960pt;}
.y63{bottom:350.112635pt;}
.yf6{bottom:351.352866pt;}
.y16a{bottom:353.763027pt;}
.y14{bottom:355.630213pt;}
.y284{bottom:356.705728pt;}
.y156{bottom:356.756506pt;}
.y285{bottom:357.476561pt;}
.y1d5{bottom:357.562497pt;}
.y25c{bottom:357.705725pt;}
.y1bb{bottom:358.515627pt;}
.y1fb{bottom:359.429696pt;}
.yd8{bottom:360.429693pt;}
.y170{bottom:360.763027pt;}
.y13c{bottom:361.179691pt;}
.y216{bottom:363.763026pt;}
.y80{bottom:364.346361pt;}
.y178{bottom:366.263027pt;}
.y25a{bottom:368.109372pt;}
.yb8{bottom:368.429693pt;}
.y2c4{bottom:368.682293pt;}
.y4a{bottom:369.373696pt;}
.y2fd{bottom:369.510420pt;}
.y235{bottom:369.747392pt;}
.y62{bottom:371.196299pt;}
.y9f{bottom:372.869761pt;}
.y351{bottom:374.515631pt;}
.y387{bottom:375.515627pt;}
.y25b{bottom:376.109372pt;}
.y13{bottom:376.713626pt;}
.y1ba{bottom:379.598960pt;}
.y30{bottom:379.760416pt;}
.y1fa{bottom:380.513024pt;}
.y18c{bottom:381.265626pt;}
.y2e1{bottom:381.682293pt;}
.y13b{bottom:382.263027pt;}
.y7f{bottom:386.679694pt;}
.y177{bottom:387.346360pt;}
.y155{bottom:388.423173pt;}
.yf5{bottom:388.436200pt;}
.y376{bottom:389.015627pt;}
.y2fc{bottom:390.598960pt;}
.y49{bottom:391.457355pt;}
.y61{bottom:392.279955pt;}
.y2b5{bottom:392.846360pt;}
.y22a{bottom:393.484372pt;}
.y165{bottom:393.513027pt;}
.y111{bottom:395.076827pt;}
.y37f{bottom:396.096360pt;}
.y297{bottom:396.442708pt;}
.yd7{bottom:397.513024pt;}
.y12{bottom:397.796960pt;}
.y215{bottom:398.179690pt;}
.y22c{bottom:401.484372pt;}
.y31c{bottom:401.596351pt;}
.y1f9{bottom:401.596360pt;}
.y2f{bottom:401.844075pt;}
.y396{bottom:402.182293pt;}
.y2e0{bottom:402.765621pt;}
.y13a{bottom:403.346360pt;}
.yb7{bottom:405.513027pt;}
.y195{bottom:406.013021pt;}
.y27d{bottom:408.773441pt;}
.y7e{bottom:409.013027pt;}
.yf4{bottom:409.519533pt;}
.y299{bottom:409.776041pt;}
.y276{bottom:410.825525pt;}
.y30b{bottom:411.096351pt;}
.y18b{bottom:412.933600pt;}
.y60{bottom:413.362635pt;}
.y1b9{bottom:414.015627pt;}
.y10e{bottom:414.871748pt;}
.y30f{bottom:414.927080pt;}
.y1d4{bottom:415.747393pt;}
.y168{bottom:416.513021pt;}
.y350{bottom:416.677089pt;}
.yd6{bottom:418.596360pt;}
.y11{bottom:418.880213pt;}
.y214{bottom:419.263026pt;}
.y34d{bottom:419.552089pt;}
.y295{bottom:420.177083pt;}
.y9e{bottom:420.789694pt;}
.y176{bottom:421.763027pt;}
.y1f8{bottom:422.679693pt;}
.y154{bottom:422.839840pt;}
.y16e{bottom:423.513021pt;}
.y2df{bottom:423.851566pt;}
.y314{bottom:424.427080pt;}
.y34f{bottom:424.427089pt;}
.y2fb{bottom:425.010413pt;}
.y16f{bottom:425.513021pt;}
.y318{bottom:426.510413pt;}
.yb6{bottom:426.596355pt;}
.y259{bottom:428.177081pt;}
.y296{bottom:428.177083pt;}
.y7d{bottom:431.346361pt;}
.y5f{bottom:434.446291pt;}
.y1b8{bottom:435.098963pt;}
.y395{bottom:436.601563pt;}
.y34c{bottom:437.765631pt;}
.y386{bottom:438.265627pt;}
.y257{bottom:438.580728pt;}
.y139{bottom:438.929694pt;}
.yd5{bottom:439.679693pt;}
.y10{bottom:439.963626pt;}
.y213{bottom:440.346360pt;}
.y9d{bottom:443.846360pt;}
.y153{bottom:443.923173pt;}
.yf3{bottom:443.936203pt;}
.y18a{bottom:444.598960pt;}
.y2de{bottom:444.932293pt;}
.y321{bottom:445.510413pt;}
.y258{bottom:446.580728pt;}
.y173{bottom:446.763027pt;}
.yb5{bottom:447.679699pt;}
.y175{bottom:450.763027pt;}
.y2c3{bottom:452.515627pt;}
.y226{bottom:453.554693pt;}
.y7c{bottom:453.679694pt;}
.y5e{bottom:455.529951pt;}
.y2b4{bottom:455.596360pt;}
.y1b7{bottom:456.182291pt;}
.y2fa{bottom:456.679693pt;}
.y1f7{bottom:457.096360pt;}
.y394{bottom:457.682289pt;}
.y37e{bottom:458.846351pt;}
.y34e{bottom:458.846360pt;}
.y9c{bottom:459.513027pt;}
.y47{bottom:462.541016pt;}
.yf2{bottom:465.019531pt;}
.y2dd{bottom:466.015629pt;}
.y309{bottom:466.596351pt;}
.yf{bottom:467.243626pt;}
.yb4{bottom:468.763027pt;}
.y138{bottom:470.596360pt;}
.yd4{bottom:471.346360pt;}
.y375{bottom:471.510413pt;}
.y27b{bottom:471.984379pt;}
.y2e{bottom:472.927571pt;}
.y212{bottom:474.763026pt;}
.y7b{bottom:476.013027pt;}
.y5d{bottom:476.612960pt;}
.y1cf{bottom:476.809897pt;}
.y1b6{bottom:477.265627pt;}
.y27c{bottom:477.317712pt;}
.y152{bottom:478.643907pt;}
.y393{bottom:478.765622pt;}
.y189{bottom:479.015626pt;}
.y37d{bottom:479.927080pt;}
.y293{bottom:480.250000pt;}
.y46{bottom:484.624675pt;}
.yf1{bottom:486.102867pt;}
.y2dc{bottom:487.101563pt;}
.y308{bottom:487.677080pt;}
.y2f9{bottom:488.348960pt;}
.y137{bottom:488.929693pt;}
.yb3{bottom:489.846363pt;}
.y224{bottom:490.359381pt;}
.y136{bottom:490.390631pt;}
.y1f6{bottom:491.513023pt;}
.y10c{bottom:491.743496pt;}
.y9b{bottom:492.846360pt;}
.y274{bottom:495.718755pt;}
.y1d2{bottom:496.203127pt;}
.y7a{bottom:498.346361pt;}
.y1b5{bottom:498.348960pt;}
.y254{bottom:498.651041pt;}
.y392{bottom:499.851560pt;}
.y385{bottom:501.015625pt;}
.yd3{bottom:503.013026pt;}
.y275{bottom:503.718755pt;}
.y374{bottom:505.929686pt;}
.yf0{bottom:507.186200pt;}
.y2db{bottom:508.182293pt;}
.y250{bottom:509.052083pt;}
.y211{bottom:509.179697pt;}
.y172{bottom:509.513021pt;}
.yb2{bottom:510.929691pt;}
.y5c{bottom:511.029952pt;}
.y1f5{bottom:512.596353pt;}
.y188{bottom:513.433595pt;}
.y174{bottom:513.513021pt;}
.y151{bottom:513.752606pt;}
.ye{bottom:515.163547pt;}
.y2c2{bottom:515.265627pt;}
.y252{bottom:517.052083pt;}
.y2b3{bottom:518.346360pt;}
.y2f8{bottom:520.010413pt;}
.y79{bottom:520.679694pt;}
.y349{bottom:521.596355pt;}
.y384{bottom:522.096355pt;}
.y292{bottom:525.052083pt;}
.y9a{bottom:526.179693pt;}
.y373{bottom:527.010417pt;}
.y2da{bottom:529.265626pt;}
.y210{bottom:530.263026pt;}
.yb1{bottom:532.013027pt;}
.y5b{bottom:532.112960pt;}
.y1b4{bottom:533.069694pt;}
.y1f4{bottom:533.679693pt;}
.y391{bottom:534.265628pt;}
.y187{bottom:534.515634pt;}
.yd2{bottom:534.679693pt;}
.y150{bottom:534.837240pt;}
.yef{bottom:541.602869pt;}
.y340{bottom:542.677084pt;}
.y78{bottom:543.013027pt;}
.y2d{bottom:544.011061pt;}
.y342{bottom:545.552084pt;}
.y372{bottom:548.096355pt;}
.y307{bottom:550.427083pt;}
.y33e{bottom:550.427084pt;}
.y223{bottom:550.429688pt;}
.y10a{bottom:551.013027pt;}
.y20f{bottom:551.346362pt;}
.yb0{bottom:553.096360pt;}
.y5a{bottom:553.196293pt;}
.y2f7{bottom:554.429693pt;}
.y1f3{bottom:554.763021pt;}
.y390{bottom:555.351562pt;}
.y186{bottom:555.598970pt;}
.y45{bottom:555.708333pt;}
.y272{bottom:555.789063pt;}
.y99{bottom:559.513027pt;}
.yee{bottom:562.686197pt;}
.y1b3{bottom:562.763027pt;}
.y2d9{bottom:563.682293pt;}
.y347{bottom:563.765625pt;}
.y77{bottom:565.346361pt;}
.yd1{bottom:566.346357pt;}
.y12e{bottom:567.263027pt;}
.y24e{bottom:569.125000pt;}
.y14f{bottom:569.253907pt;}
.y39d{bottom:569.679691pt;}
.yd{bottom:570.445032pt;}
.y20e{bottom:572.429690pt;}
.y1a9{bottom:574.848957pt;}
.y1f2{bottom:575.846365pt;}
.y38f{bottom:576.432292pt;}
.y185{bottom:576.683603pt;}
.y1ce{bottom:577.015626pt;}
.y371{bottom:577.096355pt;}
.y291{bottom:577.125000pt;}
.y270{bottom:577.895833pt;}
.y2c1{bottom:578.015627pt;}
.y36d{bottom:579.015625pt;}
.yed{bottom:583.769533pt;}
.yd0{bottom:584.679693pt;}
.y346{bottom:584.846355pt;}
.y2f6{bottom:586.098960pt;}
.yaf{bottom:587.513029pt;}
.y24b{bottom:587.526043pt;}
.y76{bottom:587.679694pt;}
.y39c{bottom:590.760417pt;}
.y59{bottom:591.446294pt;}
.y20d{bottom:593.513026pt;}
.y128{bottom:593.518235pt;}
.y24c{bottom:595.526043pt;}
.y98{bottom:595.596360pt;}
.y1a8{bottom:595.932287pt;}
.y1f1{bottom:596.929693pt;}
.y38e{bottom:597.515625pt;}
.y184{bottom:597.765630pt;}
.y2d8{bottom:598.101566pt;}
.y370{bottom:598.177084pt;}
.y14e{bottom:598.253907pt;}
.y37b{bottom:598.846355pt;}
.y2b2{bottom:600.846357pt;}
.ycf{bottom:603.013026pt;}
.yec{bottom:604.852866pt;}
.yae{bottom:608.596357pt;}
.y75{bottom:610.013027pt;}
.y1cd{bottom:611.432291pt;}
.y39b{bottom:611.848960pt;}
.y20c{bottom:614.596360pt;}
.y1a7{bottom:617.015627pt;}
.y133{bottom:617.263027pt;}
.y2f5{bottom:617.760413pt;}
.y1f0{bottom:618.013029pt;}
.y183{bottom:618.848966pt;}
.y2d7{bottom:619.182293pt;}
.y2b1{bottom:621.929693pt;}
.y2c{bottom:621.975262pt;}
.y1b2{bottom:625.513021pt;}
.yad{bottom:629.679693pt;}
.yc{bottom:631.666346pt;}
.y38d{bottom:632.236355pt;}
.y74{bottom:632.346361pt;}
.y1cc{bottom:632.515627pt;}
.y222{bottom:632.929688pt;}
.y109{bottom:633.513024pt;}
.y44{bottom:633.672195pt;}
.y58{bottom:637.099693pt;}
.yce{bottom:637.429693pt;}
.y97{bottom:637.763027pt;}
.y1a6{bottom:638.098955pt;}
.y1ef{bottom:639.096357pt;}
.yeb{bottom:639.573600pt;}
.y182{bottom:639.933600pt;}
.y2d6{bottom:640.265629pt;}
.y2c0{bottom:640.765627pt;}
.y2b0{bottom:643.013026pt;}
.y221{bottom:647.596355pt;}
.y20b{bottom:649.013026pt;}
.y2f4{bottom:649.429693pt;}
.yac{bottom:650.763026pt;}
.y2b{bottom:653.178381pt;}
.y1cb{bottom:653.598960pt;}
.y108{bottom:654.596360pt;}
.y73{bottom:654.679694pt;}
.y43{bottom:657.702067pt;}
.ycd{bottom:658.513026pt;}
.y1a5{bottom:659.182299pt;}
.y1ee{bottom:660.179693pt;}
.y14c{bottom:661.002605pt;}
.y2d5{bottom:661.351563pt;}
.yb{bottom:668.974445pt;}
.y57{bottom:673.596355pt;}
.y96{bottom:673.846360pt;}
.y181{bottom:674.653027pt;}
.yea{bottom:674.682303pt;}
.y107{bottom:675.679693pt;}
.y72{bottom:677.013027pt;}
.y2af{bottom:677.429690pt;}
.y1a4{bottom:680.265627pt;}
.y2f3{bottom:681.098960pt;}
.y1ed{bottom:681.263026pt;}
.y42{bottom:681.942134pt;}
.y2d4{bottom:682.432293pt;}
.y20a{bottom:683.429691pt;}
.yab{bottom:685.179691pt;}
.y1ca{bottom:688.015627pt;}
.ycc{bottom:694.096359pt;}
.y56{bottom:694.679699pt;}
.ye9{bottom:695.766936pt;}
.y2ae{bottom:698.513020pt;}
.y71{bottom:699.346361pt;}
.y1a3{bottom:701.348963pt;}
.y2bf{bottom:703.515627pt;}
.y209{bottom:704.513027pt;}
.y41{bottom:706.181880pt;}
.yaa{bottom:706.263027pt;}
.y1c9{bottom:709.098963pt;}
.y180{bottom:709.763027pt;}
.y92{bottom:709.929693pt;}
.y106{bottom:710.096360pt;}
.y2f2{bottom:712.760413pt;}
.y1ec{bottom:715.679699pt;}
.y55{bottom:715.763027pt;}
.ye8{bottom:716.849616pt;}
.y2ad{bottom:719.596360pt;}
.y70{bottom:721.679694pt;}
.y1a2{bottom:722.432291pt;}
.y2a{bottom:724.262048pt;}
.y208{bottom:725.596360pt;}
.ya9{bottom:727.346360pt;}
.ya{bottom:727.592454pt;}
.y1c8{bottom:730.182291pt;}
.y40{bottom:731.142582pt;}
.ycb{bottom:731.179693pt;}
.y1eb{bottom:736.763027pt;}
.y54{bottom:736.846363pt;}
.y2d3{bottom:737.932293pt;}
.ye7{bottom:737.932299pt;}
.y17f{bottom:738.763027pt;}
.y2ac{bottom:740.679688pt;}
.y1a1{bottom:743.515627pt;}
.y9{bottom:743.843150pt;}
.y6f{bottom:744.013027pt;}
.y2f1{bottom:747.179693pt;}
.y1c7{bottom:751.265627pt;}
.yca{bottom:752.263026pt;}
.y1ea{bottom:757.846363pt;}
.y53{bottom:757.929691pt;}
.ye6{bottom:759.016933pt;}
.y207{bottom:760.013026pt;}
.y8{bottom:760.093760pt;}
.ya8{bottom:761.763029pt;}
.y2ab{bottom:761.763032pt;}
.y3f{bottom:762.345707pt;}
.y1a0{bottom:764.598960pt;}
.y105{bottom:765.596360pt;}
.y2be{bottom:766.265627pt;}
.y6e{bottom:766.346361pt;}
.y1c6{bottom:772.348960pt;}
.y14b{bottom:772.348963pt;}
.y2d2{bottom:772.351565pt;}
.y91{bottom:773.179693pt;}
.y122{bottom:777.263021pt;}
.y1e9{bottom:778.929691pt;}
.y52{bottom:779.013027pt;}
.y7{bottom:781.193217pt;}
.y2f0{bottom:781.598955pt;}
.ya7{bottom:782.846357pt;}
.y2aa{bottom:782.846360pt;}
.yc9{bottom:786.679691pt;}
.y104{bottom:786.679693pt;}
.y6d{bottom:788.679694pt;}
.y164{bottom:792.596360pt;}
.y14a{bottom:793.432291pt;}
.y2d1{bottom:793.432293pt;}
.ye5{bottom:793.432299pt;}
.y206{bottom:794.429691pt;}
.y28{bottom:795.345544pt;}
.y19f{bottom:799.015624pt;}
.y1e8{bottom:800.013027pt;}
.y51{bottom:800.096360pt;}
.y17d{bottom:801.513021pt;}
.y2ef{bottom:802.679685pt;}
.ya6{bottom:803.929693pt;}
.y2a9{bottom:803.929696pt;}
.y1c5{bottom:806.765629pt;}
.yc8{bottom:807.763027pt;}
.y90{bottom:809.263027pt;}
.y6{bottom:809.269391pt;}
.y163{bottom:810.929696pt;}
.y6c{bottom:811.013027pt;}
.y149{bottom:814.516928pt;}
.ye4{bottom:814.516933pt;}
.y205{bottom:815.513027pt;}
.y19e{bottom:820.098960pt;}
.y103{bottom:821.096360pt;}
.y2ee{bottom:823.760413pt;}
.y2a8{bottom:825.013024pt;}
.ya5{bottom:825.013026pt;}
.y1c4{bottom:827.848957pt;}
.y2d0{bottom:827.851560pt;}
.yc7{bottom:828.846360pt;}
.y2bb{bottom:829.015625pt;}
.y162{bottom:829.263024pt;}
.y6b{bottom:833.346361pt;}
.y3d{bottom:833.429363pt;}
.y120{bottom:833.723959pt;}
.y148{bottom:835.598960pt;}
.y204{bottom:836.596360pt;}
.y5{bottom:837.345564pt;}
.y50{bottom:838.346360pt;}
.y19d{bottom:841.182293pt;}
.y102{bottom:842.179693pt;}
.y8f{bottom:842.596360pt;}
.y2a7{bottom:846.096360pt;}
.y161{bottom:847.596360pt;}
.y1c3{bottom:848.932293pt;}
.ye3{bottom:848.932299pt;}
.y2ed{bottom:855.429685pt;}
.y1e7{bottom:855.513019pt;}
.y6a{bottom:855.679694pt;}
.ya4{bottom:859.429691pt;}
.y19c{bottom:862.265626pt;}
.y2cf{bottom:862.265628pt;}
.yc6{bottom:863.263019pt;}
.y4{bottom:863.759640pt;}
.y160{bottom:865.929693pt;}
.y26{bottom:866.429036pt;}
.y2a6{bottom:867.179693pt;}
.y1c2{bottom:870.015626pt;}
.ye2{bottom:870.016933pt;}
.y203{bottom:871.013026pt;}
.y2ec{bottom:873.760413pt;}
.y8d{bottom:875.929688pt;}
.y101{bottom:876.596355pt;}
.y69{bottom:878.013027pt;}
.ya3{bottom:880.513019pt;}
.y19b{bottom:883.348956pt;}
.y2ce{bottom:883.351562pt;}
.yc5{bottom:884.346355pt;}
.y4f{bottom:884.513021pt;}
.y3{bottom:886.689331pt;}
.y15f{bottom:897.596354pt;}
.y1e6{bottom:897.679688pt;}
.y100{bottom:897.679691pt;}
.y68{bottom:900.346355pt;}
.ya2{bottom:901.596355pt;}
.y147{bottom:904.432292pt;}
.y3c{bottom:904.512859pt;}
.ye1{bottom:904.736355pt;}
.yc4{bottom:905.429688pt;}
.y8b{bottom:909.263021pt;}
.y11f{bottom:910.596355pt;}
.y4e{bottom:912.013022pt;}
.y2ba{bottom:912.846355pt;}
.yff{bottom:918.763019pt;}
.y1e5{bottom:918.763021pt;}
.y67{bottom:922.679688pt;}
.y19a{bottom:925.515625pt;}
.y146{bottom:925.516926pt;}
.y202{bottom:926.513021pt;}
.y15e{bottom:929.263021pt;}
.yc3{bottom:939.846355pt;}
.y2eb{bottom:939.848960pt;}
.y2{bottom:952.330728pt;}
.y4d{bottom:958.263021pt;}
.y145{bottom:960.236355pt;}
.y25{bottom:960.393230pt;}
.yc2{bottom:960.929688pt;}
.y21{bottom:975.596355pt;}
.y1{bottom:1011.135417pt;}
.h1d{height:20.454400pt;}
.h1e{height:25.568000pt;}
.h19{height:32.333333pt;}
.h18{height:35.083333pt;}
.ha{height:36.249999pt;}
.h67{height:38.448000pt;}
.h5d{height:38.828124pt;}
.h4b{height:40.546874pt;}
.h48{height:42.135416pt;}
.h50{height:42.613332pt;}
.h1{height:42.656250pt;}
.h42{height:42.710938pt;}
.h17{height:43.413334pt;}
.h9{height:43.500000pt;}
.h5{height:43.706668pt;}
.h6d{height:44.744000pt;}
.h12{height:44.749441pt;}
.h3b{height:46.178783pt;}
.h22{height:46.348959pt;}
.h79{height:46.816001pt;}
.h6{height:46.874668pt;}
.h16{height:46.992001pt;}
.h7a{height:47.750000pt;}
.h14{height:48.317302pt;}
.h78{height:48.419271pt;}
.h1f{height:48.817571pt;}
.h15{height:49.291669pt;}
.h59{height:50.299479pt;}
.h4c{height:51.067708pt;}
.h53{height:51.070312pt;}
.h56{height:51.072917pt;}
.h13{height:51.306669pt;}
.hb{height:51.375000pt;}
.h45{height:52.324781pt;}
.h3d{height:52.324797pt;}
.h1b{height:52.324801pt;}
.h7b{height:52.324805pt;}
.h3e{height:52.324813pt;}
.h40{height:52.395201pt;}
.h38{height:52.709782pt;}
.h7{height:52.885704pt;}
.h4{height:53.320312pt;}
.h2f{height:55.414539pt;}
.h3{height:56.875002pt;}
.h21{height:58.269531pt;}
.h4a{height:59.067708pt;}
.h47{height:59.070312pt;}
.h55{height:59.072917pt;}
.h5b{height:59.833333pt;}
.h43{height:60.062500pt;}
.h20{height:61.750000pt;}
.h28{height:64.000000pt;}
.h77{height:67.580729pt;}
.h10{height:68.083333pt;}
.hd{height:68.083496pt;}
.hc{height:68.083659pt;}
.h5c{height:68.700521pt;}
.h58{height:69.471355pt;}
.h57{height:69.473959pt;}
.h75{height:69.500000pt;}
.h2{height:72.000000pt;}
.h23{height:75.871745pt;}
.h25{height:75.872396pt;}
.h1c{height:77.250000pt;}
.h2d{height:77.333333pt;}
.h54{height:77.471355pt;}
.h41{height:79.455729pt;}
.h6e{height:80.919271pt;}
.h4e{height:82.804688pt;}
.h5a{height:82.807292pt;}
.h63{height:82.830729pt;}
.h64{height:82.833333pt;}
.h73{height:87.705729pt;}
.h62{height:87.875000pt;}
.hf{height:90.167155pt;}
.he{height:90.167317pt;}
.h76{height:90.580729pt;}
.h2e{height:90.596355pt;}
.h5e{height:90.807292pt;}
.h24{height:95.666667pt;}
.h49{height:95.875000pt;}
.h74{height:96.166667pt;}
.h6f{height:96.169271pt;}
.h1a{height:98.333333pt;}
.h70{height:101.044271pt;}
.h61{height:101.208333pt;}
.h3c{height:103.916667pt;}
.h6b{height:103.919271pt;}
.h26{height:109.000000pt;}
.h27{height:114.000000pt;}
.h44{height:118.247396pt;}
.h6c{height:121.169271pt;}
.h69{height:122.916667pt;}
.h11{height:123.666667pt;}
.h52{height:124.000000pt;}
.h68{height:125.000000pt;}
.h29{height:132.333333pt;}
.h66{height:134.500000pt;}
.h65{height:138.330729pt;}
.h5f{height:143.963541pt;}
.h7c{height:144.083333pt;}
.h60{height:146.015625pt;}
.h71{height:146.080729pt;}
.h72{height:146.083333pt;}
.h8{height:147.070312pt;}
.h6a{height:147.830729pt;}
.h2c{height:159.000000pt;}
.h37{height:173.083333pt;}
.h4f{height:179.278645pt;}
.h2a{height:182.744792pt;}
.h4d{height:196.416667pt;}
.h2b{height:209.000000pt;}
.h51{height:272.958333pt;}
.h3f{height:349.083333pt;}
.h30{height:381.083333pt;}
.h36{height:461.083333pt;}
.h35{height:465.083333pt;}
.h39{height:513.083333pt;}
.h34{height:549.083333pt;}
.h31{height:550.083333pt;}
.h33{height:551.083333pt;}
.h32{height:676.583333pt;}
.h3a{height:734.388027pt;}
.h46{height:794.666667pt;}
.h0{height:1122.666667pt;}
.w1a{width:30.000000pt;}
.w2c{width:39.000000pt;}
.w1b{width:58.000000pt;}
.w6{width:68.000000pt;}
.w2d{width:69.000000pt;}
.w21{width:75.000000pt;}
.w28{width:76.000000pt;}
.w15{width:79.000000pt;}
.w30{width:80.000000pt;}
.w2a{width:85.000000pt;}
.w14{width:87.000000pt;}
.w29{width:88.000000pt;}
.w16{width:89.000000pt;}
.w7{width:93.000000pt;}
.w13{width:95.000000pt;}
.w25{width:100.000000pt;}
.w27{width:103.000000pt;}
.w26{width:106.000000pt;}
.w9{width:114.000000pt;}
.w2f{width:123.000000pt;}
.wd{width:129.000000pt;}
.wa{width:154.000000pt;}
.w8{width:157.000000pt;}
.w22{width:161.000000pt;}
.w1c{width:165.000000pt;}
.w17{width:173.000000pt;}
.w1f{width:175.000000pt;}
.w2b{width:184.000000pt;}
.w2{width:198.000000pt;}
.w4{width:199.000000pt;}
.wf{width:205.000000pt;}
.w1e{width:242.000000pt;}
.w1d{width:252.000000pt;}
.we{width:263.000000pt;}
.w12{width:299.000000pt;}
.w23{width:311.000000pt;}
.w3{width:393.000000pt;}
.w5{width:395.000000pt;}
.wb{width:444.000000pt;}
.w2e{width:526.000000pt;}
.w20{width:549.000000pt;}
.w11{width:586.000000pt;}
.wc{width:599.000000pt;}
.w10{width:600.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.w19{width:927.000000pt;}
.w31{width:928.000000pt;}
.w24{width:931.000000pt;}
.w18{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5e{left:2.000000pt;}
.x30{left:6.835938pt;}
.x27{left:8.386719pt;}
.x6a{left:9.506775pt;}
.x25{left:10.542969pt;}
.x6e{left:11.512665pt;}
.x69{left:13.104515pt;}
.x32{left:14.226562pt;}
.x67{left:15.267929pt;}
.x74{left:16.193550pt;}
.x24{left:17.507812pt;}
.x22{left:19.671875pt;}
.x7a{left:20.882614pt;}
.x73{left:22.159042pt;}
.x2f{left:23.605469pt;}
.x71{left:25.119240pt;}
.x1b{left:27.304688pt;}
.x29{left:30.031250pt;}
.x34{left:30.976563pt;}
.x11{left:32.351563pt;}
.x51{left:34.243393pt;}
.x72{left:36.218056pt;}
.x2b{left:39.808594pt;}
.xc{left:42.230469pt;}
.x13{left:43.890625pt;}
.x1e{left:48.378906pt;}
.x18{left:50.519531pt;}
.x31{left:52.722656pt;}
.x17{left:53.820313pt;}
.x2d{left:54.835938pt;}
.x33{left:56.500000pt;}
.xf{left:58.039063pt;}
.x15{left:64.398438pt;}
.x1d{left:74.085938pt;}
.x12{left:78.171875pt;}
.x1a{left:83.652344pt;}
.x14{left:89.003906pt;}
.x64{left:94.000000pt;}
.x1{left:96.000000pt;}
.x3b{left:97.000000pt;}
.x63{left:100.142090pt;}
.x49{left:104.000000pt;}
.x3d{left:107.263901pt;}
.x40{left:109.049011pt;}
.x9{left:111.321943pt;}
.x6{left:113.148718pt;}
.x58{left:114.095947pt;}
.x26{left:115.000001pt;}
.x3f{left:117.487961pt;}
.x39{left:120.000000pt;}
.x10{left:123.441406pt;}
.x5a{left:128.000000pt;}
.x23{left:129.921875pt;}
.x60{left:131.000000pt;}
.x48{left:134.301941pt;}
.x45{left:138.000000pt;}
.x19{left:141.195313pt;}
.x3a{left:144.000000pt;}
.x1f{left:157.222656pt;}
.x4b{left:159.230515pt;}
.x28{left:167.000000pt;}
.x46{left:168.000000pt;}
.x7d{left:169.332947pt;}
.x8{left:171.610161pt;}
.x4f{left:173.067657pt;}
.xe{left:181.695310pt;}
.x1c{left:187.074220pt;}
.x65{left:188.000000pt;}
.x3e{left:190.000000pt;}
.x53{left:193.000000pt;}
.x61{left:207.000000pt;}
.x2{left:216.000000pt;}
.x41{left:227.000000pt;}
.x35{left:251.000000pt;}
.x3c{left:252.000000pt;}
.x54{left:262.000000pt;}
.x2a{left:263.000000pt;}
.x4e{left:274.500000pt;}
.x4d{left:276.000000pt;}
.x7{left:279.006476pt;}
.x4{left:282.034160pt;}
.x66{left:289.000000pt;}
.xd{left:297.000000pt;}
.x16{left:298.000000pt;}
.x7f{left:316.551160pt;}
.x38{left:331.629410pt;}
.xa{left:332.632860pt;}
.x80{left:334.094680pt;}
.x55{left:350.000000pt;}
.x5b{left:353.000000pt;}
.x62{left:369.000000pt;}
.x5{left:396.850400pt;}
.x2c{left:423.000000pt;}
.x56{left:430.000000pt;}
.x75{left:467.000000pt;}
.x4a{left:469.000000pt;}
.x42{left:491.000000pt;}
.x68{left:500.000000pt;}
.x44{left:513.500000pt;}
.x57{left:520.000000pt;}
.x20{left:522.850400pt;}
.xb{left:525.000000pt;}
.x2e{left:583.000000pt;}
.x6b{left:590.000000pt;}
.x50{left:591.000000pt;}
.x37{left:597.772292pt;}
.x5c{left:606.000000pt;}
.x3{left:610.850400pt;}
.x76{left:652.000000pt;}
.x52{left:680.860660pt;}
.x59{left:681.901310pt;}
.x43{left:683.557430pt;}
.x4c{left:684.598020pt;}
.x47{left:686.855100pt;}
.x36{left:689.581180pt;}
.x21{left:692.277950pt;}
.x6c{left:694.000000pt;}
.x7c{left:763.500000pt;}
.x6d{left:771.000000pt;}
.x78{left:778.000000pt;}
.x7e{left:834.259830pt;}
.x77{left:837.000000pt;}
.x5d{left:849.000000pt;}
.x6f{left:860.000000pt;}
.x79{left:902.000000pt;}
.x70{left:946.000000pt;}
.x5f{left:1010.412410pt;}
.x7b{left:1011.321110pt;}
}




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