
    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_93651831cf7daf99e1accae7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_c594108f1bbf85c151614820.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_66e3355e7e644f2759456998.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202000;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_c67f208b586fe0f51b158bf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;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_74cb0842703ab73d20670942.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_47a51ece981bb5d085855809.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_0697a0fc9bc86412231c408e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_faaf1967b24b907247fd2bc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_04c7d9ef4ee4ad7aba0ee782.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6cca46d389b0953ada964b88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_d328f16e44dd57d91508d0f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.444000;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_549dcdd56c23cf1383cc5aff.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.444000;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_805ba78874fe7f22023784cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113000;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_6f19d368d09c2b397033bb7d.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_c0b32992a0a6e82b0fc9db96.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:26.399780px;}
.v4{vertical-align:54.000000px;}
.ls6{letter-spacing:-1.248000px;}
.ls4{letter-spacing:-1.050000px;}
.ls7{letter-spacing:-0.768000px;}
.lsa{letter-spacing:-0.470400px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000002px;}
.ls9{letter-spacing:0.058800px;}
.ls8{letter-spacing:0.705600px;}
.ls5{letter-spacing:0.823200px;}
.ls1{letter-spacing:5.460000px;}
.ls2{letter-spacing:38.306381px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.wsf3{word-spacing:-14.523600px;}
.ws6e{word-spacing:-13.935600px;}
.wsf2{word-spacing:-13.876800px;}
.ws16{word-spacing:-13.818000px;}
.wsf4{word-spacing:-13.465200px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws103{word-spacing:-11.426400px;}
.wsab{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws6{word-spacing:-9.855000px;}
.ws155{word-spacing:-9.315000px;}
.wsb6{word-spacing:-8.640000px;}
.ws9{word-spacing:-8.148000px;}
.ws156{word-spacing:-6.898500px;}
.ws8{word-spacing:-2.772000px;}
.ws15f{word-spacing:-1.890000px;}
.ws118{word-spacing:-1.680000px;}
.ws160{word-spacing:-1.575000px;}
.ws136{word-spacing:-1.352400px;}
.wsc3{word-spacing:-1.058400px;}
.ws119{word-spacing:-0.999600px;}
.ws12c{word-spacing:-0.940800px;}
.ws133{word-spacing:-0.882000px;}
.wse{word-spacing:-0.823200px;}
.ws7{word-spacing:-0.780000px;}
.ws77{word-spacing:-0.764400px;}
.ws93{word-spacing:-0.646800px;}
.wsbe{word-spacing:-0.588000px;}
.ws142{word-spacing:-0.529200px;}
.ws8d{word-spacing:-0.470400px;}
.ws5e{word-spacing:-0.411600px;}
.ws15e{word-spacing:-0.294000px;}
.wsdb{word-spacing:-0.235200px;}
.wsfa{word-spacing:-0.176400px;}
.ws125{word-spacing:-0.058800px;}
.ws1{word-spacing:0.000000px;}
.ws3e{word-spacing:0.058800px;}
.ws74{word-spacing:0.117600px;}
.ws41{word-spacing:0.176400px;}
.ws114{word-spacing:0.235200px;}
.ws25{word-spacing:0.470400px;}
.ws81{word-spacing:0.529200px;}
.ws99{word-spacing:0.588000px;}
.ws2a{word-spacing:0.646800px;}
.ws60{word-spacing:0.705600px;}
.wscd{word-spacing:0.764400px;}
.wsc4{word-spacing:0.823200px;}
.wsf{word-spacing:0.882000px;}
.ws154{word-spacing:0.940800px;}
.ws15d{word-spacing:0.999600px;}
.ws13f{word-spacing:1.117200px;}
.ws116{word-spacing:1.176000px;}
.wsa1{word-spacing:1.234800px;}
.wsb2{word-spacing:1.293600px;}
.ws32{word-spacing:1.352400px;}
.wsa0{word-spacing:1.411200px;}
.wsa4{word-spacing:1.470000px;}
.wsc{word-spacing:1.528800px;}
.ws117{word-spacing:1.587600px;}
.wsc9{word-spacing:1.646400px;}
.wsc6{word-spacing:1.764000px;}
.ws5f{word-spacing:1.822800px;}
.ws96{word-spacing:1.881600px;}
.ws9c{word-spacing:1.940400px;}
.wsfc{word-spacing:1.999200px;}
.wsc0{word-spacing:2.058000px;}
.ws146{word-spacing:2.116800px;}
.ws6b{word-spacing:2.175600px;}
.wsdc{word-spacing:2.234400px;}
.ws106{word-spacing:2.352000px;}
.wsa9{word-spacing:2.410800px;}
.ws50{word-spacing:2.469600px;}
.ws10f{word-spacing:2.528400px;}
.ws33{word-spacing:2.587200px;}
.ws101{word-spacing:2.646000px;}
.ws61{word-spacing:2.763600px;}
.ws134{word-spacing:2.822400px;}
.ws19{word-spacing:2.881200px;}
.ws2c{word-spacing:2.940000px;}
.wsb7{word-spacing:2.998800px;}
.ws83{word-spacing:3.057600px;}
.ws7b{word-spacing:3.116400px;}
.ws45{word-spacing:3.175200px;}
.wsc1{word-spacing:3.234000px;}
.ws34{word-spacing:3.292800px;}
.ws54{word-spacing:3.351600px;}
.ws68{word-spacing:3.410400px;}
.ws110{word-spacing:3.469200px;}
.ws5b{word-spacing:3.528000px;}
.ws11c{word-spacing:3.586800px;}
.ws1c{word-spacing:3.645600px;}
.ws9f{word-spacing:3.704400px;}
.ws7a{word-spacing:3.822000px;}
.ws2b{word-spacing:3.880800px;}
.wsfd{word-spacing:3.939600px;}
.ws58{word-spacing:3.998400px;}
.ws102{word-spacing:4.057200px;}
.ws143{word-spacing:4.116000px;}
.ws1b{word-spacing:4.174800px;}
.ws37{word-spacing:4.233600px;}
.wsa3{word-spacing:4.292400px;}
.ws141{word-spacing:4.351200px;}
.ws3c{word-spacing:4.410000px;}
.ws9e{word-spacing:4.468800px;}
.wsc5{word-spacing:4.527600px;}
.ws150{word-spacing:4.704000px;}
.wsd3{word-spacing:4.762800px;}
.ws1f{word-spacing:4.821600px;}
.wsd{word-spacing:4.880400px;}
.wsd5{word-spacing:4.939200px;}
.ws84{word-spacing:4.998000px;}
.wsa2{word-spacing:5.056800px;}
.ws104{word-spacing:5.174400px;}
.ws49{word-spacing:5.233200px;}
.ws12d{word-spacing:5.350793px;}
.wsd6{word-spacing:5.409600px;}
.ws46{word-spacing:5.468400px;}
.wsca{word-spacing:5.527200px;}
.ws21{word-spacing:5.586000px;}
.wse7{word-spacing:5.644800px;}
.ws22{word-spacing:5.703600px;}
.wsd0{word-spacing:5.762400px;}
.ws91{word-spacing:5.821200px;}
.wsb9{word-spacing:5.880000px;}
.ws11{word-spacing:5.938800px;}
.ws11d{word-spacing:5.997600px;}
.wsf7{word-spacing:6.056400px;}
.ws14{word-spacing:6.174000px;}
.ws66{word-spacing:6.232800px;}
.ws30{word-spacing:6.291600px;}
.wsb8{word-spacing:6.468000px;}
.wsc7{word-spacing:6.526800px;}
.ws108{word-spacing:6.585600px;}
.wsbf{word-spacing:6.644400px;}
.ws151{word-spacing:6.703200px;}
.ws40{word-spacing:6.762000px;}
.wsee{word-spacing:6.820800px;}
.wscb{word-spacing:6.879600px;}
.wsf0{word-spacing:6.938400px;}
.ws42{word-spacing:6.997200px;}
.ws48{word-spacing:7.056000px;}
.ws12a{word-spacing:7.114800px;}
.wsdd{word-spacing:7.173600px;}
.ws137{word-spacing:7.232400px;}
.ws2e{word-spacing:7.291200px;}
.ws4a{word-spacing:7.350000px;}
.wsb3{word-spacing:7.408800px;}
.wsa7{word-spacing:7.467600px;}
.ws10b{word-spacing:7.526400px;}
.ws13{word-spacing:7.585200px;}
.ws1a{word-spacing:7.644000px;}
.ws47{word-spacing:7.702800px;}
.wsa5{word-spacing:7.761600px;}
.ws5c{word-spacing:7.820400px;}
.ws131{word-spacing:7.879200px;}
.ws113{word-spacing:7.938000px;}
.ws1d{word-spacing:7.996800px;}
.ws138{word-spacing:8.055600px;}
.wsea{word-spacing:8.114400px;}
.wsd9{word-spacing:8.173200px;}
.wsf9{word-spacing:8.232000px;}
.wsc2{word-spacing:8.290800px;}
.ws8e{word-spacing:8.349600px;}
.wse1{word-spacing:8.408400px;}
.ws8f{word-spacing:8.467200px;}
.wsec{word-spacing:8.526000px;}
.wsc8{word-spacing:8.584800px;}
.wsa6{word-spacing:8.643600px;}
.ws18{word-spacing:8.702400px;}
.ws135{word-spacing:8.761200px;}
.wsba{word-spacing:8.820000px;}
.ws59{word-spacing:8.878800px;}
.ws57{word-spacing:8.996400px;}
.ws11e{word-spacing:9.055200px;}
.ws71{word-spacing:9.114000px;}
.wsda{word-spacing:9.172800px;}
.wsa8{word-spacing:9.231600px;}
.ws69{word-spacing:9.290400px;}
.wse2{word-spacing:9.349200px;}
.ws4b{word-spacing:9.408000px;}
.ws124{word-spacing:9.466800px;}
.ws15c{word-spacing:9.584400px;}
.ws29{word-spacing:9.643200px;}
.ws130{word-spacing:9.760800px;}
.ws121{word-spacing:9.819600px;}
.wsdf{word-spacing:9.878400px;}
.ws13e{word-spacing:9.937200px;}
.ws6a{word-spacing:9.996000px;}
.ws79{word-spacing:10.054800px;}
.ws140{word-spacing:10.113600px;}
.ws109{word-spacing:10.172400px;}
.ws4e{word-spacing:10.231200px;}
.ws158{word-spacing:10.348800px;}
.ws94{word-spacing:10.407600px;}
.wsd8{word-spacing:10.466400px;}
.ws3f{word-spacing:10.525200px;}
.ws1e{word-spacing:10.584000px;}
.ws13c{word-spacing:10.642800px;}
.ws10{word-spacing:10.760400px;}
.ws85{word-spacing:10.878000px;}
.ws55{word-spacing:10.936800px;}
.wse3{word-spacing:10.995600px;}
.ws7e{word-spacing:11.054400px;}
.ws53{word-spacing:11.113200px;}
.ws105{word-spacing:11.172000px;}
.ws4c{word-spacing:11.230800px;}
.ws28{word-spacing:11.289600px;}
.wsde{word-spacing:11.348400px;}
.wsbb{word-spacing:11.466000px;}
.wse8{word-spacing:11.524800px;}
.ws7c{word-spacing:11.583600px;}
.ws9d{word-spacing:11.642400px;}
.ws152{word-spacing:11.701200px;}
.ws26{word-spacing:11.760000px;}
.ws15{word-spacing:11.818800px;}
.ws43{word-spacing:11.877600px;}
.ws80{word-spacing:11.936400px;}
.ws4d{word-spacing:11.995200px;}
.ws64{word-spacing:12.112800px;}
.ws78{word-spacing:12.171600px;}
.ws9a{word-spacing:12.230400px;}
.wsfe{word-spacing:12.289200px;}
.wsb5{word-spacing:12.348000px;}
.ws56{word-spacing:12.406800px;}
.ws11b{word-spacing:12.524400px;}
.wsb{word-spacing:12.583200px;}
.ws36{word-spacing:12.642000px;}
.ws24{word-spacing:12.700800px;}
.wsf1{word-spacing:12.759600px;}
.ws13d{word-spacing:12.877200px;}
.ws12b{word-spacing:12.936000px;}
.wsd7{word-spacing:12.994800px;}
.wsce{word-spacing:13.053600px;}
.ws75{word-spacing:13.112400px;}
.ws14c{word-spacing:13.171200px;}
.ws92{word-spacing:13.347600px;}
.ws12{word-spacing:13.582800px;}
.ws3a{word-spacing:13.641600px;}
.ws149{word-spacing:13.700400px;}
.ws115{word-spacing:13.935600px;}
.ws90{word-spacing:13.994400px;}
.ws132{word-spacing:14.053200px;}
.ws20{word-spacing:14.170800px;}
.wsa{word-spacing:14.229600px;}
.ws122{word-spacing:14.288400px;}
.wsf6{word-spacing:14.347200px;}
.ws10c{word-spacing:14.464800px;}
.wse4{word-spacing:14.523600px;}
.ws7f{word-spacing:14.582400px;}
.ws10e{word-spacing:14.758800px;}
.ws35{word-spacing:14.876400px;}
.wsd4{word-spacing:14.935200px;}
.ws112{word-spacing:14.994000px;}
.ws100{word-spacing:15.052800px;}
.wsb4{word-spacing:15.111600px;}
.ws17{word-spacing:15.288000px;}
.ws3b{word-spacing:15.405600px;}
.ws13b{word-spacing:15.464400px;}
.ws67{word-spacing:15.523200px;}
.ws126{word-spacing:15.758400px;}
.ws107{word-spacing:15.817200px;}
.ws72{word-spacing:15.876000px;}
.ws14d{word-spacing:15.934800px;}
.ws44{word-spacing:15.993600px;}
.ws14f{word-spacing:16.170000px;}
.wscc{word-spacing:16.228800px;}
.ws52{word-spacing:16.287600px;}
.ws144{word-spacing:16.346400px;}
.wse5{word-spacing:16.522800px;}
.ws5a{word-spacing:16.581600px;}
.ws12f{word-spacing:16.758000px;}
.ws2d{word-spacing:16.875600px;}
.ws6c{word-spacing:16.934400px;}
.ws70{word-spacing:16.993200px;}
.ws111{word-spacing:17.052000px;}
.ws73{word-spacing:17.110800px;}
.ws2f{word-spacing:17.169600px;}
.wsbc{word-spacing:17.228400px;}
.ws10a{word-spacing:17.346000px;}
.ws157{word-spacing:17.522400px;}
.ws51{word-spacing:17.640000px;}
.ws65{word-spacing:17.698800px;}
.wse9{word-spacing:17.757600px;}
.ws10d{word-spacing:17.875200px;}
.ws127{word-spacing:17.934000px;}
.ws7d{word-spacing:17.992800px;}
.wsf8{word-spacing:18.051600px;}
.ws82{word-spacing:18.286800px;}
.ws159{word-spacing:18.463200px;}
.wse6{word-spacing:18.698400px;}
.ws15a{word-spacing:18.757200px;}
.ws97{word-spacing:18.874800px;}
.ws11f{word-spacing:18.992400px;}
.ws98{word-spacing:19.051200px;}
.ws12e{word-spacing:19.110000px;}
.ws145{word-spacing:19.286400px;}
.ws3d{word-spacing:19.345200px;}
.wseb{word-spacing:19.521600px;}
.ws6d{word-spacing:19.815600px;}
.wse0{word-spacing:19.933200px;}
.ws128{word-spacing:20.109600px;}
.ws153{word-spacing:20.168400px;}
.ws63{word-spacing:20.344800px;}
.ws13a{word-spacing:20.403600px;}
.ws39{word-spacing:20.580000px;}
.ws76{word-spacing:20.991600px;}
.ws129{word-spacing:21.050400px;}
.wsff{word-spacing:21.226800px;}
.ws6f{word-spacing:21.344400px;}
.ws9b{word-spacing:21.462000px;}
.ws62{word-spacing:21.638400px;}
.ws31{word-spacing:21.697200px;}
.ws14a{word-spacing:21.814800px;}
.ws123{word-spacing:21.991200px;}
.wsd1{word-spacing:22.108800px;}
.ws27{word-spacing:22.285200px;}
.wsd2{word-spacing:22.638000px;}
.wscf{word-spacing:23.402400px;}
.ws148{word-spacing:23.461200px;}
.wsbd{word-spacing:24.166800px;}
.ws147{word-spacing:24.284400px;}
.ws14e{word-spacing:24.578400px;}
.wsfb{word-spacing:25.284000px;}
.ws120{word-spacing:25.342800px;}
.wsed{word-spacing:25.636800px;}
.ws11a{word-spacing:26.401200px;}
.wsef{word-spacing:26.871600px;}
.ws15b{word-spacing:29.223600px;}
.ws38{word-spacing:29.694000px;}
.wsf5{word-spacing:30.282000px;}
.ws14b{word-spacing:30.340800px;}
.ws4f{word-spacing:31.281600px;}
.ws95{word-spacing:32.751600px;}
.ws5d{word-spacing:33.516000px;}
.ws23{word-spacing:34.809600px;}
.ws139{word-spacing:45.570000px;}
.wsac{word-spacing:487.396786px;}
.wsae{word-spacing:583.247986px;}
.wsaf{word-spacing:585.263986px;}
.wsb1{word-spacing:591.503986px;}
.wsaa{word-spacing:623.999986px;}
.wsad{word-spacing:645.983986px;}
.wsb0{word-spacing:668.735986px;}
.ws87{word-spacing:881.524761px;}
.ws89{word-spacing:977.375961px;}
.ws8a{word-spacing:979.391961px;}
.ws8c{word-spacing:985.631961px;}
.ws86{word-spacing:1018.127961px;}
.ws88{word-spacing:1040.111961px;}
.ws8b{word-spacing:1062.863961px;}
._b{margin-left:-10.987800px;}
._31{margin-left:-9.577080px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-6.297620px;}
._3{margin-left:-4.284000px;}
._7{margin-left:-3.204580px;}
._1{margin-left:-1.996800px;}
._5{width:1.462200px;}
._8{width:2.928600px;}
._4{width:3.945600px;}
._0{width:5.587200px;}
._16{width:7.590600px;}
._11{width:8.774380px;}
._c{width:10.054800px;}
._12{width:11.995200px;}
._13{width:14.524800px;}
._d{width:15.894000px;}
._a{width:17.776788px;}
._2e{width:23.696400px;}
._2f{width:25.166400px;}
._30{width:26.930400px;}
._14{width:29.517600px;}
._2d{width:32.046000px;}
._15{width:35.338800px;}
._10{width:37.152000px;}
._6{width:38.303363px;}
._32{width:44.784000px;}
._29{width:63.628800px;}
._1d{width:69.407986px;}
._27{width:175.062600px;}
._21{width:178.607986px;}
._f{width:227.616000px;}
._24{width:262.924756px;}
._1f{width:288.892786px;}
._23{width:313.247956px;}
._20{width:326.015986px;}
._e{width:353.088000px;}
._1e{width:379.631986px;}
._17{width:463.535961px;}
._1b{width:572.735961px;}
._28{width:579.408000px;}
._25{width:585.964800px;}
._2a{width:606.633600px;}
._19{width:683.020761px;}
._1a{width:720.143961px;}
._22{width:764.668756px;}
._18{width:773.759961px;}
._2c{width:979.667325px;}
._26{width:1066.800000px;}
._1c{width:1143.724782px;}
._2b{width:1562.207925px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.500000px;}
.fs9{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs3{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fse{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:74.579400px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:5.051572px;}
.yc{bottom:8.040000px;}
.y50{bottom:27.928802px;}
.y3d{bottom:75.796800px;}
.y3c{bottom:87.798300px;}
.y13{bottom:99.795000px;}
.y3b{bottom:99.799800px;}
.y23f{bottom:100.384645px;}
.y219{bottom:100.662003px;}
.y8b{bottom:101.055003px;}
.y22d{bottom:101.877445px;}
.y2de{bottom:104.766753px;}
.yba{bottom:105.914095px;}
.y30b{bottom:106.237953px;}
.y1e5{bottom:106.995153px;}
.y17b{bottom:107.206195px;}
.y17e{bottom:107.220894px;}
.y178{bottom:108.247495px;}
.y132{bottom:108.807003px;}
.y382{bottom:109.106998px;}
.y2a2{bottom:111.627445px;}
.y3a{bottom:111.801300px;}
.y284{bottom:112.377445px;}
.y1a7{bottom:112.838395px;}
.y1a0{bottom:113.602795px;}
.y17{bottom:113.670000px;}
.y3f6{bottom:114.342773px;}
.y23e{bottom:118.377445px;}
.y218{bottom:118.669203px;}
.yca{bottom:118.781999px;}
.y8a{bottom:119.047803px;}
.yd7{bottom:119.539199px;}
.y22c{bottom:119.935057px;}
.y3b0{bottom:121.237953px;}
.y2dd{bottom:122.759553px;}
.y39{bottom:123.802800px;}
.yb9{bottom:123.906895px;}
.y331{bottom:124.245153px;}
.y30a{bottom:124.259553px;}
.y1e4{bottom:124.987953px;}
.y353{bottom:125.031153px;}
.y17a{bottom:125.198995px;}
.y17d{bottom:125.213694px;}
.y177{bottom:126.475495px;}
.y3f5{bottom:127.842773px;}
.y2a1{bottom:129.634645px;}
.y283{bottom:130.435057px;}
.y1a6{bottom:130.831195px;}
.y19f{bottom:131.595595px;}
.y16{bottom:135.750000px;}
.y38{bottom:135.804300px;}
.y133{bottom:135.986400px;}
.y23d{bottom:136.442096px;}
.y217{bottom:136.662003px;}
.yc9{bottom:136.774799px;}
.y89{bottom:137.040603px;}
.yd6{bottom:137.531999px;}
.y22b{bottom:137.927857px;}
.y2dc{bottom:140.752353px;}
.y3f4{bottom:141.342773px;}
.yb8{bottom:141.899695px;}
.y330{bottom:142.237953px;}
.y309{bottom:142.252353px;}
.y1e3{bottom:143.023953px;}
.y179{bottom:143.191795px;}
.y17c{bottom:143.206494px;}
.y176{bottom:144.619495px;}
.y2a0{bottom:147.627445px;}
.y37{bottom:147.805800px;}
.y3af{bottom:148.237953px;}
.y282{bottom:148.427857px;}
.y19e{bottom:149.588395px;}
.y23c{bottom:154.434896px;}
.y216{bottom:154.726803px;}
.yc8{bottom:154.767599px;}
.y3f3{bottom:154.842773px;}
.y14{bottom:154.950000px;}
.y88{bottom:155.033403px;}
.yd5{bottom:155.524799px;}
.y22a{bottom:155.920657px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y2db{bottom:158.745153px;}
.yb7{bottom:159.892495px;}
.y308{bottom:160.245153px;}
.y32f{bottom:160.266753px;}
.y1e2{bottom:161.016753px;}
.y175{bottom:162.775495px;}
.y29f{bottom:165.641857px;}
.y3ae{bottom:166.237953px;}
.y281{bottom:166.420657px;}
.y19d{bottom:167.581195px;}
.y3f2{bottom:168.342773px;}
.y23b{bottom:172.427696px;}
.y215{bottom:172.719603px;}
.yc7{bottom:172.760399px;}
.y87{bottom:173.026203px;}
.yd4{bottom:173.517599px;}
.y229{bottom:173.913457px;}
.y2da{bottom:176.737953px;}
.yb6{bottom:177.885295px;}
.y32e{bottom:178.259553px;}
.y1e1{bottom:179.009553px;}
.y3ad{bottom:179.737953px;}
.y174{bottom:180.919495px;}
.y3f1{bottom:181.842773px;}
.y29e{bottom:183.634657px;}
.y280{bottom:184.413457px;}
.y19c{bottom:185.573995px;}
.y55{bottom:185.680641px;}
.y3ac{bottom:188.737953px;}
.y23a{bottom:190.420496px;}
.y214{bottom:190.712403px;}
.yc6{bottom:190.803599px;}
.y86{bottom:191.019003px;}
.yd3{bottom:191.510399px;}
.y228{bottom:191.906257px;}
.y2d9{bottom:194.773953px;}
.y3f0{bottom:195.342773px;}
.yb5{bottom:195.878095px;}
.y32d{bottom:196.252353px;}
.y307{bottom:196.995153px;}
.y1e0{bottom:197.002353px;}
.y173{bottom:199.063495px;}
.y54{bottom:199.180641px;}
.y29d{bottom:201.627457px;}
.y27f{bottom:202.406257px;}
.y19b{bottom:203.566795px;}
.y239{bottom:208.413296px;}
.y213{bottom:208.705203px;}
.yc5{bottom:208.796399px;}
.y3ef{bottom:208.842773px;}
.y85{bottom:209.011803px;}
.yd2{bottom:209.510399px;}
.y227{bottom:209.899057px;}
.y195{bottom:211.569740px;}
.y2d8{bottom:212.766753px;}
.y4d{bottom:213.696896px;}
.yb4{bottom:213.870895px;}
.y32c{bottom:214.245153px;}
.y306{bottom:214.987953px;}
.y1df{bottom:214.995153px;}
.y3ab{bottom:215.737953px;}
.y53{bottom:217.180641px;}
.y172{bottom:217.207495px;}
.y29c{bottom:219.632257px;}
.y27e{bottom:220.399057px;}
.y1a5{bottom:221.581195px;}
.y19a{bottom:221.588395px;}
.y3ee{bottom:222.342773px;}
.y52{bottom:226.180641px;}
.y238{bottom:226.406096px;}
.y212{bottom:226.698003px;}
.yc4{bottom:226.789199px;}
.y84{bottom:227.004603px;}
.y226{bottom:227.891857px;}
.y3aa{bottom:229.237953px;}
.y2d7{bottom:230.759553px;}
.y4c{bottom:231.689696px;}
.yb3{bottom:231.914095px;}
.y32b{bottom:232.237953px;}
.y1de{bottom:232.987953px;}
.y305{bottom:233.016753px;}
.y171{bottom:235.351495px;}
.y3ed{bottom:235.842773px;}
.y29b{bottom:237.627457px;}
.y27d{bottom:238.391857px;}
.y1a4{bottom:239.573995px;}
.y199{bottom:239.581195px;}
.y237{bottom:244.398896px;}
.y211{bottom:244.690803px;}
.y83{bottom:244.997403px;}
.y225{bottom:245.884657px;}
.y2d6{bottom:248.752353px;}
.y3ec{bottom:249.342773px;}
.y4b{bottom:249.682496px;}
.yb2{bottom:249.906895px;}
.y32a{bottom:250.252353px;}
.y1dd{bottom:250.987953px;}
.y304{bottom:251.009553px;}
.y170{bottom:253.507495px;}
.y3a9{bottom:256.237953px;}
.y27c{bottom:256.384657px;}
.y1a3{bottom:257.566795px;}
.y198{bottom:257.573995px;}
.y236{bottom:262.391696px;}
.y210{bottom:262.683603px;}
.y3eb{bottom:262.842773px;}
.y82{bottom:262.990203px;}
.yc3{bottom:263.539199px;}
.y224{bottom:263.877457px;}
.yd1{bottom:264.267599px;}
.y2d5{bottom:266.745153px;}
.y4a{bottom:267.675296px;}
.yb1{bottom:267.899695px;}
.y329{bottom:268.245153px;}
.y1dc{bottom:269.002353px;}
.y3a8{bottom:269.737953px;}
.y16f{bottom:271.651495px;}
.y27b{bottom:274.377457px;}
.y197{bottom:275.566795px;}
.y1a2{bottom:275.611494px;}
.y3ea{bottom:276.342773px;}
.y235{bottom:280.384496px;}
.y20f{bottom:280.676403px;}
.y81{bottom:280.983003px;}
.yc2{bottom:281.531999px;}
.y223{bottom:281.884496px;}
.yd0{bottom:282.260399px;}
.y2d4{bottom:284.737953px;}
.y43{bottom:284.877594px;}
.y49{bottom:285.668096px;}
.yb0{bottom:285.892495px;}
.y328{bottom:286.237953px;}
.y1db{bottom:286.995153px;}
.y16e{bottom:289.795495px;}
.y3e9{bottom:289.842773px;}
.y27a{bottom:292.384496px;}
.y29a{bottom:292.420519px;}
.y196{bottom:293.566795px;}
.y1a1{bottom:293.604294px;}
.y3a7{bottom:296.737953px;}
.y20e{bottom:298.669203px;}
.y80{bottom:298.975803px;}
.yc1{bottom:299.524799px;}
.y222{bottom:299.877296px;}
.ycf{bottom:300.260399px;}
.y2d3{bottom:302.817130px;}
.y42{bottom:302.884794px;}
.y3e8{bottom:303.342773px;}
.y48{bottom:303.660896px;}
.yaf{bottom:303.885295px;}
.y327{bottom:304.281130px;}
.y1da{bottom:304.987953px;}
.y16d{bottom:307.951495px;}
.y3a6{bottom:310.237953px;}
.y279{bottom:310.377296px;}
.y299{bottom:310.413319px;}
.y20d{bottom:316.662003px;}
.y3e7{bottom:316.842773px;}
.y7f{bottom:316.968603px;}
.y234{bottom:317.134496px;}
.y221{bottom:317.927719px;}
.yce{bottom:318.305099px;}
.y2d2{bottom:320.809930px;}
.y41{bottom:320.877594px;}
.y47{bottom:321.668096px;}
.yae{bottom:321.878095px;}
.y326{bottom:322.273930px;}
.y303{bottom:322.987953px;}
.y1d9{bottom:322.995153px;}
.y352{bottom:323.059930px;}
.y16c{bottom:326.095495px;}
.y298{bottom:328.406119px;}
.y278{bottom:328.420519px;}
.y3e6{bottom:330.342773px;}
.y20c{bottom:334.669203px;}
.y7e{bottom:334.961403px;}
.y233{bottom:335.127296px;}
.y220{bottom:335.920519px;}
.yc0{bottom:336.274799px;}
.ycd{bottom:336.297899px;}
.y3a5{bottom:337.237953px;}
.y2d1{bottom:338.802730px;}
.y40{bottom:338.877594px;}
.y16b{bottom:339.595495px;}
.y46{bottom:339.660896px;}
.yad{bottom:339.870895px;}
.y325{bottom:340.266730px;}
.y1d8{bottom:340.987953px;}
.y351{bottom:341.052730px;}
.y3e5{bottom:343.842773px;}
.ya{bottom:344.680500px;}
.y297{bottom:346.398919px;}
.y277{bottom:346.413319px;}
.y20b{bottom:352.662003px;}
.y7d{bottom:352.961403px;}
.y232{bottom:353.144536px;}
.y21f{bottom:353.913319px;}
.ybf{bottom:354.267599px;}
.ycc{bottom:354.290699px;}
.y2d0{bottom:356.795530px;}
.y3f{bottom:356.877594px;}
.y3e4{bottom:357.342773px;}
.y45{bottom:357.671994px;}
.yac{bottom:357.870895px;}
.y324{bottom:358.259530px;}
.y1d7{bottom:358.995153px;}
.y350{bottom:359.045530px;}
.y1be{bottom:360.375017px;}
.y296{bottom:364.391719px;}
.y276{bottom:364.406119px;}
.y16a{bottom:366.487495px;}
.y20a{bottom:370.734003px;}
.y3e3{bottom:370.842773px;}
.y7c{bottom:371.047780px;}
.y231{bottom:371.137336px;}
.y21e{bottom:371.906119px;}
.ybe{bottom:372.260399px;}
.ycb{bottom:372.283499px;}
.y3a4{bottom:373.237930px;}
.y1bd{bottom:373.875017px;}
.y2cf{bottom:374.788330px;}
.y3e{bottom:374.877594px;}
.y44{bottom:375.664794px;}
.yab{bottom:375.942895px;}
.y323{bottom:376.252330px;}
.y1d6{bottom:376.987953px;}
.y34f{bottom:377.038330px;}
.y295{bottom:382.384519px;}
.y275{bottom:382.398919px;}
.y3e2{bottom:384.342773px;}
.yd{bottom:386.490000px;}
.y3a3{bottom:386.737930px;}
.y1bc{bottom:387.375017px;}
.y209{bottom:388.726803px;}
.y7b{bottom:389.040580px;}
.y230{bottom:389.130136px;}
.y21d{bottom:389.898919px;}
.y169{bottom:390.800262px;}
.y2ce{bottom:392.781130px;}
.yaa{bottom:393.935695px;}
.y322{bottom:394.245130px;}
.y1d5{bottom:395.002330px;}
.y34e{bottom:395.031130px;}
.y9{bottom:395.689500px;}
.y302{bottom:395.737930px;}
.y3e1{bottom:397.842773px;}
.y294{bottom:400.377319px;}
.y274{bottom:400.391719px;}
.y1bb{bottom:405.603017px;}
.y208{bottom:406.719603px;}
.y7a{bottom:407.033380px;}
.y21c{bottom:407.891719px;}
.y2cd{bottom:410.773930px;}
.y3e0{bottom:411.342773px;}
.ya9{bottom:411.928495px;}
.y321{bottom:412.237930px;}
.y1d4{bottom:412.995130px;}
.y34d{bottom:413.023930px;}
.y301{bottom:413.737930px;}
.y273{bottom:418.384519px;}
.y293{bottom:418.391719px;}
.y1ba{bottom:419.103017px;}
.y207{bottom:424.712403px;}
.y3df{bottom:424.842773px;}
.y79{bottom:425.026180px;}
.y22f{bottom:425.880136px;}
.y21b{bottom:425.884519px;}
.y36{bottom:426.215057px;}
.y3a2{bottom:427.237930px;}
.y2cc{bottom:428.766730px;}
.ya8{bottom:429.921295px;}
.y320{bottom:430.259530px;}
.y1d3{bottom:430.987930px;}
.y34c{bottom:431.016730px;}
.y300{bottom:431.759530px;}
.y1b9{bottom:432.603017px;}
.yb{bottom:434.850000px;}
.y272{bottom:436.377319px;}
.y292{bottom:436.384519px;}
.y3de{bottom:438.342773px;}
.yfe{bottom:440.959335px;}
.y206{bottom:442.705203px;}
.y78{bottom:443.018980px;}
.y22e{bottom:443.872936px;}
.y21a{bottom:443.877319px;}
.y8{bottom:446.698500px;}
.y2cb{bottom:446.759530px;}
.ya7{bottom:447.914095px;}
.y31f{bottom:448.252330px;}
.y35{bottom:448.715057px;}
.y36b{bottom:448.987930px;}
.y1d2{bottom:448.995130px;}
.y381{bottom:449.737930px;}
.y2ff{bottom:449.752330px;}
.y1b8{bottom:450.747017px;}
.y3dd{bottom:451.842773px;}
.y3a1{bottom:454.237930px;}
.y291{bottom:454.377319px;}
.y271{bottom:454.413319px;}
.yfd{bottom:454.459335px;}
.y205{bottom:460.698003px;}
.y77{bottom:461.011780px;}
.y1b7{bottom:464.247017px;}
.y2ca{bottom:464.752330px;}
.y3dc{bottom:465.342773px;}
.y14a{bottom:465.495130px;}
.ya6{bottom:465.906895px;}
.y31e{bottom:466.245130px;}
.y168{bottom:466.302730px;}
.y34{bottom:466.715057px;}
.y1d1{bottom:466.987930px;}
.y36a{bottom:466.995130px;}
.y3a0{bottom:467.737930px;}
.y2fe{bottom:467.745130px;}
.y34b{bottom:467.766730px;}
.y380{bottom:467.788330px;}
.yfc{bottom:467.959335px;}
.y290{bottom:472.384519px;}
.y270{bottom:472.406119px;}
.y1b6{bottom:477.747017px;}
.y204{bottom:478.690803px;}
.y3db{bottom:478.842773px;}
.y76{bottom:479.004580px;}
.y39f{bottom:481.237930px;}
.y2c9{bottom:482.745130px;}
.y3f9{bottom:483.342728px;}
.y149{bottom:483.487930px;}
.ya5{bottom:483.899695px;}
.y31d{bottom:484.237930px;}
.y167{bottom:484.295530px;}
.y33{bottom:484.715057px;}
.y369{bottom:484.987930px;}
.y1d0{bottom:484.995130px;}
.y2fd{bottom:485.737930px;}
.y34a{bottom:485.759530px;}
.y37f{bottom:485.781130px;}
.yfb{bottom:486.187335px;}
.y10{bottom:488.055000px;}
.y28f{bottom:490.377319px;}
.y26f{bottom:490.398919px;}
.y1b5{bottom:491.247017px;}
.y3da{bottom:492.342773px;}
.y39e{bottom:494.737930px;}
.y203{bottom:496.683603px;}
.y3f8{bottom:496.842728px;}
.y75{bottom:496.997380px;}
.y7{bottom:497.707500px;}
.yfa{bottom:499.687335px;}
.y262{bottom:500.623518px;}
.y2c8{bottom:500.737930px;}
.y148{bottom:501.502330px;}
.ya4{bottom:501.892495px;}
.y31c{bottom:502.245130px;}
.y166{bottom:502.288330px;}
.y32{bottom:502.715057px;}
.y1cf{bottom:502.987930px;}
.y368{bottom:503.023930px;}
.y2fc{bottom:503.745130px;}
.y349{bottom:503.752330px;}
.y37e{bottom:503.773930px;}
.y1b4{bottom:504.747017px;}
.y3d9{bottom:505.842773px;}
.y39d{bottom:508.237930px;}
.y26e{bottom:508.391719px;}
.y28e{bottom:508.413319px;}
.y3f7{bottom:510.342728px;}
.y261{bottom:514.123518px;}
.y202{bottom:514.676403px;}
.y74{bottom:514.990180px;}
.yf9{bottom:517.831335px;}
.y2c7{bottom:518.773930px;}
.y3d8{bottom:519.342773px;}
.y147{bottom:519.495130px;}
.ya3{bottom:519.885295px;}
.y31b{bottom:520.237930px;}
.y165{bottom:520.281130px;}
.y31{bottom:520.715057px;}
.y1ce{bottom:521.002330px;}
.y367{bottom:521.016730px;}
.y2fb{bottom:521.737930px;}
.y348{bottom:521.745130px;}
.y37d{bottom:521.766730px;}
.y1b3{bottom:522.891017px;}
.y26d{bottom:526.384519px;}
.y28d{bottom:526.406119px;}
.y260{bottom:527.623518px;}
.yf8{bottom:531.331335px;}
.y201{bottom:532.669203px;}
.y3d7{bottom:532.842773px;}
.y73{bottom:532.982980px;}
.y39c{bottom:535.237930px;}
.y1b2{bottom:536.391017px;}
.y2c6{bottom:536.766730px;}
.y146{bottom:537.487930px;}
.ya2{bottom:537.878095px;}
.y11{bottom:538.230000px;}
.y31a{bottom:538.259530px;}
.y164{bottom:538.273930px;}
.y30{bottom:538.715057px;}
.y1cd{bottom:538.995130px;}
.y366{bottom:539.009530px;}
.y347{bottom:539.737930px;}
.y2fa{bottom:539.759530px;}
.y25f{bottom:541.123518px;}
.y26c{bottom:544.377319px;}
.y28c{bottom:544.398919px;}
.yf7{bottom:544.831335px;}
.y3d6{bottom:546.342773px;}
.y6{bottom:548.716500px;}
.y39b{bottom:548.737930px;}
.y1b1{bottom:549.891017px;}
.y200{bottom:550.662003px;}
.y72{bottom:550.975780px;}
.y25e{bottom:554.623518px;}
.y2c5{bottom:554.759530px;}
.y145{bottom:555.487930px;}
.ya1{bottom:555.870895px;}
.y319{bottom:556.252330px;}
.y163{bottom:556.266730px;}
.y2f{bottom:556.715057px;}
.y1cc{bottom:556.987930px;}
.y365{bottom:557.002330px;}
.y346{bottom:557.737930px;}
.y2f9{bottom:557.752330px;}
.y3d5{bottom:559.842773px;}
.y26b{bottom:562.377319px;}
.y28b{bottom:562.391719px;}
.yf6{bottom:562.975335px;}
.y1b0{bottom:563.391017px;}
.y1ff{bottom:568.662003px;}
.y71{bottom:568.968580px;}
.y2c4{bottom:572.752330px;}
.y25d{bottom:572.851518px;}
.y3d4{bottom:573.342773px;}
.y144{bottom:573.516730px;}
.ya0{bottom:573.870895px;}
.y318{bottom:574.245130px;}
.y162{bottom:574.259530px;}
.y117{bottom:574.324376px;}
.y2e{bottom:574.715057px;}
.y131{bottom:574.987930px;}
.y364{bottom:574.995130px;}
.y1cb{bottom:575.031130px;}
.y39a{bottom:575.737930px;}
.y2f8{bottom:575.745130px;}
.yf5{bottom:576.475335px;}
.y1af{bottom:576.891017px;}
.y26a{bottom:580.384519px;}
.y3d3{bottom:586.842773px;}
.y70{bottom:586.961380px;}
.y18{bottom:589.605000px;}
.y25c{bottom:590.995518px;}
.y143{bottom:591.509530px;}
.y317{bottom:592.237930px;}
.y161{bottom:592.252330px;}
.y116{bottom:592.317176px;}
.y2d{bottom:592.715057px;}
.y130{bottom:592.987930px;}
.y1ca{bottom:593.023930px;}
.y2f7{bottom:593.737930px;}
.y399{bottom:593.766730px;}
.yf4{bottom:594.619335px;}
.y1ae{bottom:595.035017px;}
.y269{bottom:598.377319px;}
.y5{bottom:599.725500px;}
.y3d2{bottom:600.342773px;}
.y25b{bottom:604.495518px;}
.y6f{bottom:604.966180px;}
.y1ad{bottom:608.535017px;}
.y142{bottom:609.502330px;}
.y160{bottom:610.245130px;}
.y316{bottom:610.252330px;}
.y115{bottom:610.309976px;}
.y2c{bottom:610.715057px;}
.y363{bottom:610.987930px;}
.y12f{bottom:610.995130px;}
.y1c9{bottom:611.016730px;}
.y37c{bottom:611.752330px;}
.y398{bottom:611.759530px;}
.y1fe{bottom:611.766730px;}
.y345{bottom:611.781130px;}
.y2f6{bottom:611.809976px;}
.yf3{bottom:612.691335px;}
.y3d1{bottom:613.842773px;}
.y268{bottom:616.391719px;}
.y28a{bottom:616.411045px;}
.y25a{bottom:617.995518px;}
.y1ac{bottom:622.035017px;}
.y6e{bottom:622.961380px;}
.y3d0{bottom:627.342773px;}
.y141{bottom:627.495130px;}
.y15f{bottom:628.237930px;}
.y315{bottom:628.245130px;}
.y114{bottom:628.302776px;}
.y9f{bottom:628.635295px;}
.y2b{bottom:628.715057px;}
.y12e{bottom:628.987930px;}
.y1c8{bottom:629.009530px;}
.y37b{bottom:629.745130px;}
.y397{bottom:629.752330px;}
.y1fd{bottom:629.759530px;}
.y344{bottom:629.773930px;}
.y2f5{bottom:629.802776px;}
.yf2{bottom:630.919335px;}
.y259{bottom:631.495518px;}
.ye{bottom:631.920000px;}
.y267{bottom:634.384519px;}
.y289{bottom:634.403845px;}
.y1ab{bottom:635.535017px;}
.y3cf{bottom:640.842773px;}
.yf1{bottom:644.419335px;}
.y258{bottom:644.995518px;}
.y140{bottom:645.487930px;}
.y314{bottom:646.237930px;}
.y15e{bottom:646.245130px;}
.y113{bottom:646.295576px;}
.y9e{bottom:646.628095px;}
.y2a{bottom:646.715057px;}
.y362{bottom:646.995130px;}
.y1c7{bottom:647.002330px;}
.y12d{bottom:647.038376px;}
.y37a{bottom:647.737930px;}
.y396{bottom:647.745130px;}
.y1fc{bottom:647.752330px;}
.y343{bottom:647.766730px;}
.y2f4{bottom:647.795576px;}
.y266{bottom:652.377319px;}
.y288{bottom:652.396645px;}
.y3ce{bottom:654.342773px;}
.yf0{bottom:657.919335px;}
.y194{bottom:661.591518px;}
.y1aa{bottom:662.427017px;}
.y257{bottom:663.139518px;}
.y2c3{bottom:663.487930px;}
.y13f{bottom:663.545576px;}
.y15d{bottom:664.237930px;}
.y112{bottom:664.288376px;}
.y6d{bottom:664.620895px;}
.y29{bottom:664.715057px;}
.y361{bottom:664.987930px;}
.y1c6{bottom:664.995130px;}
.y12c{bottom:665.031176px;}
.y395{bottom:665.737930px;}
.y1fb{bottom:665.745130px;}
.y342{bottom:665.759530px;}
.y2f3{bottom:665.788376px;}
.y3cd{bottom:667.842773px;}
.y265{bottom:670.377319px;}
.y287{bottom:670.389445px;}
.yef{bottom:676.063335px;}
.y256{bottom:676.639518px;}
.y193{bottom:679.819518px;}
.y3cc{bottom:681.342773px;}
.y13e{bottom:681.538376px;}
.y15c{bottom:682.237930px;}
.y111{bottom:682.281176px;}
.y313{bottom:682.309976px;}
.y9d{bottom:682.620895px;}
.y6c{bottom:682.635295px;}
.y28{bottom:682.715057px;}
.y1c5{bottom:682.987930px;}
.y12b{bottom:683.023976px;}
.y1fa{bottom:683.737930px;}
.y341{bottom:683.752330px;}
.y2f2{bottom:683.781176px;}
.y394{bottom:683.853176px;}
.y1a9{bottom:686.739761px;}
.y286{bottom:688.382245px;}
.y264{bottom:688.384519px;}
.yee{bottom:689.563335px;}
.y255{bottom:690.139518px;}
.y3cb{bottom:694.842773px;}
.y192{bottom:697.963518px;}
.y13d{bottom:699.531176px;}
.y15b{bottom:700.237930px;}
.y110{bottom:700.273976px;}
.y312{bottom:700.302776px;}
.y6b{bottom:700.628095px;}
.y27{bottom:700.715057px;}
.y360{bottom:701.009530px;}
.y12a{bottom:701.016776px;}
.y1c4{bottom:701.023976px;}
.y1f9{bottom:701.745130px;}
.y2f1{bottom:701.773976px;}
.y393{bottom:701.845976px;}
.y254{bottom:703.639518px;}
.y285{bottom:706.375045px;}
.y263{bottom:706.377319px;}
.yed{bottom:707.707335px;}
.y3ca{bottom:708.342773px;}
.y191{bottom:716.107518px;}
.y253{bottom:717.139518px;}
.y15a{bottom:718.237930px;}
.y10f{bottom:718.266776px;}
.y2c2{bottom:718.281176px;}
.y311{bottom:718.295576px;}
.y6a{bottom:718.620895px;}
.y26{bottom:718.715057px;}
.y35f{bottom:719.002330px;}
.y129{bottom:719.009576px;}
.y1c3{bottom:719.016776px;}
.y1f8{bottom:719.737930px;}
.y2f0{bottom:719.766776px;}
.y392{bottom:719.838776px;}
.yec{bottom:721.207335px;}
.y3c9{bottom:721.842773px;}
.y252{bottom:730.639518px;}
.y190{bottom:734.251518px;}
.yeb{bottom:734.707335px;}
.y3c8{bottom:735.342773px;}
.y159{bottom:736.237930px;}
.y13c{bottom:736.281176px;}
.y310{bottom:736.288376px;}
.y9c{bottom:736.628095px;}
.y69{bottom:736.635341px;}
.y25{bottom:736.715057px;}
.y35e{bottom:736.995130px;}
.y128{bottom:737.002376px;}
.y1c2{bottom:737.009576px;}
.y340{bottom:737.737930px;}
.y2ef{bottom:737.759576px;}
.y1f7{bottom:737.781176px;}
.y391{bottom:737.831576px;}
.y251{bottom:744.139518px;}
.y1a8{bottom:745.400253px;}
.yea{bottom:748.207335px;}
.y3c7{bottom:748.842773px;}
.y18f{bottom:752.395518px;}
.y13b{bottom:754.273976px;}
.y30f{bottom:754.281176px;}
.y9b{bottom:754.620895px;}
.y68{bottom:754.628141px;}
.y24{bottom:754.715057px;}
.y35d{bottom:754.987930px;}
.y127{bottom:754.995176px;}
.y1c1{bottom:755.002376px;}
.y10e{bottom:755.016776px;}
.y2c1{bottom:755.031176px;}
.y2ee{bottom:755.752376px;}
.y1f6{bottom:755.773976px;}
.y390{bottom:755.824376px;}
.y2b2{bottom:757.399518px;}
.y250{bottom:757.639518px;}
.ye9{bottom:761.707335px;}
.y3c6{bottom:762.342773px;}
.y18e{bottom:765.895518px;}
.y13a{bottom:772.266776px;}
.y158{bottom:772.273976px;}
.y67{bottom:772.620941px;}
.y23{bottom:772.715057px;}
.y126{bottom:772.987976px;}
.y1c0{bottom:772.995176px;}
.y10d{bottom:773.009576px;}
.y2c0{bottom:773.023976px;}
.y35c{bottom:773.045576px;}
.y2ed{bottom:773.745176px;}
.y1f5{bottom:773.766776px;}
.y38f{bottom:773.817176px;}
.y2b1{bottom:775.627518px;}
.y24f{bottom:775.783518px;}
.y3c5{bottom:775.842773px;}
.y4{bottom:778.225500px;}
.ye8{bottom:779.863335px;}
.y18d{bottom:784.051518px;}
.y2b0{bottom:789.127518px;}
.y24e{bottom:789.283518px;}
.y3c4{bottom:789.342773px;}
.y139{bottom:790.259576px;}
.y157{bottom:790.266776px;}
.y66{bottom:790.620941px;}
.y9a{bottom:790.635341px;}
.y22{bottom:790.715057px;}
.y1bf{bottom:790.987976px;}
.y10c{bottom:791.002376px;}
.y2bf{bottom:791.016776px;}
.y35b{bottom:791.038376px;}
.y125{bottom:791.052776px;}
.y2ec{bottom:791.737976px;}
.y1f4{bottom:791.759576px;}
.y38e{bottom:791.809976px;}
.ye7{bottom:793.363335px;}
.y18c{bottom:802.195518px;}
.y24d{bottom:802.783518px;}
.y3c3{bottom:802.842773px;}
.y2af{bottom:807.283518px;}
.y138{bottom:808.252376px;}
.y156{bottom:808.259576px;}
.y99{bottom:808.628141px;}
.y65{bottom:808.656941px;}
.y21{bottom:808.715057px;}
.y10b{bottom:808.995176px;}
.y2be{bottom:809.009576px;}
.y35a{bottom:809.031176px;}
.y124{bottom:809.045576px;}
.y33f{bottom:809.745176px;}
.y1f3{bottom:809.752376px;}
.y2eb{bottom:809.773976px;}
.y38d{bottom:809.802776px;}
.y379{bottom:809.828825px;}
.ye6{bottom:811.507335px;}
.y12{bottom:815.670000px;}
.y18b{bottom:815.695518px;}
.y24c{bottom:816.283518px;}
.y3c2{bottom:816.342773px;}
.y2ae{bottom:820.783518px;}
.ye5{bottom:825.007335px;}
.y137{bottom:826.245176px;}
.y155{bottom:826.252376px;}
.y98{bottom:826.620941px;}
.y64{bottom:826.649741px;}
.y10a{bottom:826.987976px;}
.y2bd{bottom:827.002376px;}
.y359{bottom:827.023976px;}
.y123{bottom:827.038376px;}
.y33e{bottom:827.737976px;}
.y1f2{bottom:827.745176px;}
.y2ea{bottom:827.766776px;}
.y38c{bottom:827.795576px;}
.y378{bottom:827.821625px;}
.y18a{bottom:829.195518px;}
.y24b{bottom:829.783518px;}
.y3c1{bottom:829.842773px;}
.y20{bottom:831.215057px;}
.y2ad{bottom:834.283518px;}
.ye4{bottom:838.507335px;}
.y189{bottom:842.695518px;}
.y24a{bottom:843.283518px;}
.y3c0{bottom:843.342773px;}
.y136{bottom:844.237976px;}
.y154{bottom:844.245176px;}
.y63{bottom:844.642541px;}
.y97{bottom:844.664141px;}
.y2bc{bottom:844.995176px;}
.y358{bottom:845.016776px;}
.y122{bottom:845.031176px;}
.y109{bottom:845.052776px;}
.y1f1{bottom:845.737976px;}
.y2e9{bottom:845.759576px;}
.y33d{bottom:845.781176px;}
.y38b{bottom:845.788376px;}
.y377{bottom:845.814425px;}
.y2ac{bottom:847.783518px;}
.y188{bottom:856.195518px;}
.ye3{bottom:856.651335px;}
.y249{bottom:856.783518px;}
.y3bf{bottom:856.842773px;}
.y2ab{bottom:861.283518px;}
.y153{bottom:862.237976px;}
.y135{bottom:862.259576px;}
.y62{bottom:862.635341px;}
.y96{bottom:862.656941px;}
.y2bb{bottom:862.987976px;}
.y357{bottom:863.009576px;}
.y121{bottom:863.023976px;}
.y108{bottom:863.045576px;}
.y1f0{bottom:863.745176px;}
.y2e8{bottom:863.752376px;}
.y33c{bottom:863.773976px;}
.y38a{bottom:863.781176px;}
.y376{bottom:863.807225px;}
.y187{bottom:869.695518px;}
.ye2{bottom:870.151335px;}
.y248{bottom:870.283518px;}
.y3be{bottom:870.342773px;}
.y2aa{bottom:879.439518px;}
.y152{bottom:880.237976px;}
.y30e{bottom:880.273976px;}
.y61{bottom:880.628141px;}
.y95{bottom:880.649741px;}
.y356{bottom:881.002376px;}
.y120{bottom:881.016776px;}
.y2ba{bottom:881.023976px;}
.y107{bottom:881.038376px;}
.y1ef{bottom:881.737976px;}
.y2e7{bottom:881.745176px;}
.y33b{bottom:881.766776px;}
.y389{bottom:881.773976px;}
.y375{bottom:881.800025px;}
.y247{bottom:883.783518px;}
.y3bd{bottom:883.842773px;}
.y186{bottom:887.851518px;}
.ye1{bottom:888.295335px;}
.y2a9{bottom:892.939518px;}
.y3bc{bottom:897.342773px;}
.y30d{bottom:898.266776px;}
.y60{bottom:898.620941px;}
.y94{bottom:898.642541px;}
.y355{bottom:898.995176px;}
.y11f{bottom:899.009576px;}
.y2b9{bottom:899.016776px;}
.y106{bottom:899.031176px;}
.y2e6{bottom:899.737976px;}
.y33a{bottom:899.759576px;}
.y388{bottom:899.766776px;}
.y374{bottom:899.792825px;}
.y1ee{bottom:899.795539px;}
.y246{bottom:901.927518px;}
.y1f{bottom:903.552612px;}
.y3{bottom:905.716500px;}
.y185{bottom:905.995518px;}
.ye0{bottom:906.439335px;}
.y2a8{bottom:906.439518px;}
.y3bb{bottom:910.842773px;}
.y245{bottom:915.427518px;}
.y30c{bottom:916.259576px;}
.y93{bottom:916.635341px;}
.y5f{bottom:916.642541px;}
.y151{bottom:916.987976px;}
.y11e{bottom:917.002376px;}
.y2b8{bottom:917.009576px;}
.y105{bottom:917.023976px;}
.y339{bottom:917.752376px;}
.y387{bottom:917.759576px;}
.y2e5{bottom:917.781176px;}
.y373{bottom:917.785625px;}
.y1ed{bottom:917.788339px;}
.ydf{bottom:919.939335px;}
.y184{bottom:924.139518px;}
.y3ba{bottom:924.342773px;}
.y2a7{bottom:924.595518px;}
.yde{bottom:933.439335px;}
.y244{bottom:933.571518px;}
.y92{bottom:934.628141px;}
.y5e{bottom:934.635341px;}
.y354{bottom:934.987976px;}
.y11d{bottom:934.995176px;}
.y2b7{bottom:935.002376px;}
.y104{bottom:935.016776px;}
.y150{bottom:935.027857px;}
.y338{bottom:935.745176px;}
.y386{bottom:935.752376px;}
.y2e4{bottom:935.773976px;}
.y372{bottom:935.778425px;}
.y1ec{bottom:935.781139px;}
.y3b9{bottom:937.842773px;}
.y2a6{bottom:938.095518px;}
.y1e{bottom:939.565528px;}
.y183{bottom:942.295518px;}
.ydd{bottom:946.939335px;}
.y243{bottom:947.071518px;}
.y3b8{bottom:951.342773px;}
.y2a5{bottom:951.595518px;}
.y91{bottom:952.620941px;}
.y5d{bottom:952.628141px;}
.y11c{bottom:952.987976px;}
.y2b6{bottom:952.995176px;}
.y103{bottom:953.009576px;}
.y14f{bottom:953.020657px;}
.y337{bottom:953.737976px;}
.y385{bottom:953.745176px;}
.y2e3{bottom:953.766776px;}
.y371{bottom:953.771225px;}
.y1eb{bottom:953.773939px;}
.ydc{bottom:960.439335px;}
.y182{bottom:960.439518px;}
.y242{bottom:960.571518px;}
.y2{bottom:964.228500px;}
.y3b7{bottom:964.842773px;}
.y2a4{bottom:965.095518px;}
.y5c{bottom:970.620941px;}
.y90{bottom:970.642541px;}
.y2b5{bottom:970.987976px;}
.y102{bottom:971.002376px;}
.y14e{bottom:971.013457px;}
.y11b{bottom:971.092064px;}
.y384{bottom:971.737976px;}
.y2e2{bottom:971.759576px;}
.y370{bottom:971.764025px;}
.y1ea{bottom:971.766739px;}
.y336{bottom:971.773634px;}
.y181{bottom:973.939518px;}
.y241{bottom:974.071518px;}
.y3b6{bottom:978.342773px;}
.y1d{bottom:978.553528px;}
.ydb{bottom:978.595335px;}
.y2a3{bottom:978.595518px;}
.y5b{bottom:988.620941px;}
.y8f{bottom:988.635341px;}
.y2b4{bottom:988.987976px;}
.y134{bottom:988.995176px;}
.y14d{bottom:989.006257px;}
.y11a{bottom:989.084864px;}
.y1{bottom:989.716500px;}
.y2e1{bottom:989.752376px;}
.y36f{bottom:989.756825px;}
.y1e9{bottom:989.759539px;}
.y383{bottom:989.759576px;}
.y335{bottom:989.766434px;}
.y3b5{bottom:991.842773px;}
.yda{bottom:992.095335px;}
.y180{bottom:992.095518px;}
.y240{bottom:992.215518px;}
.y3b4{bottom:1005.342773px;}
.y8e{bottom:1006.628141px;}
.y5a{bottom:1006.635341px;}
.y2e0{bottom:1007.745176px;}
.y36e{bottom:1007.749625px;}
.y1e8{bottom:1007.752339px;}
.y101{bottom:1007.752376px;}
.y334{bottom:1007.759234px;}
.y3b3{bottom:1018.842773px;}
.yd9{bottom:1018.987335px;}
.y17f{bottom:1018.987518px;}
.y8d{bottom:1024.620941px;}
.y59{bottom:1024.628141px;}
.y2b3{bottom:1025.737976px;}
.y36d{bottom:1025.742425px;}
.y1e7{bottom:1025.745139px;}
.y100{bottom:1025.745176px;}
.y333{bottom:1025.752034px;}
.y14c{bottom:1025.756257px;}
.y119{bottom:1025.834864px;}
.y3b2{bottom:1032.342773px;}
.y1c{bottom:1033.362579px;}
.y4e{bottom:1035.750183px;}
.y58{bottom:1042.620941px;}
.y8c{bottom:1042.707583px;}
.yd8{bottom:1043.300079px;}
.y36c{bottom:1043.735225px;}
.y1e6{bottom:1043.737939px;}
.yff{bottom:1043.737976px;}
.y332{bottom:1043.744834px;}
.y14b{bottom:1043.749057px;}
.y2df{bottom:1043.773329px;}
.y118{bottom:1043.827664px;}
.y3b1{bottom:1045.842773px;}
.y4f{bottom:1093.933502px;}
.y1b{bottom:1097.297079px;}
.y1a{bottom:1112.297079px;}
.ybb{bottom:1126.524628px;}
.y56{bottom:1126.524719px;}
.ybd{bottom:1126.756989px;}
.y19{bottom:1126.925079px;}
.ybc{bottom:1127.300079px;}
.y57{bottom:1127.304719px;}
.h1a{height:27.814500px;}
.h4{height:33.000000px;}
.h15{height:37.086000px;}
.h19{height:39.735000px;}
.h22{height:41.424000px;}
.h14{height:41.538000px;}
.h1f{height:42.384000px;}
.h20{height:42.672000px;}
.h26{height:42.840000px;}
.h25{height:43.785000px;}
.h17{height:43.905000px;}
.hd{height:45.696000px;}
.hc{height:45.744000px;}
.h1e{height:46.704000px;}
.hb{height:47.232000px;}
.h21{height:47.472000px;}
.h12{height:52.980000px;}
.h1d{height:53.406000px;}
.h24{height:53.654399px;}
.h1b{height:53.709599px;}
.h1c{height:54.625200px;}
.h16{height:55.860000px;}
.h18{height:57.053241px;}
.h13{height:58.380000px;}
.h3{height:58.406250px;}
.h11{height:61.120200px;}
.h2{height:66.750000px;}
.h10{height:67.194379px;}
.h5{height:67.740234px;}
.he{height:77.142000px;}
.h23{height:96.384000px;}
.h7{height:115.215000px;}
.hf{height:137.088000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:173.083500px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x12{left:22.029739px;}
.xa{left:84.933002px;}
.xb{left:92.734348px;}
.xc{left:94.683150px;}
.x14{left:97.034552px;}
.x17{left:100.033352px;}
.x23{left:107.539352px;}
.x16{left:115.032152px;}
.x18{left:124.038452px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x15{left:214.039352px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xd{left:270.817497px;}
.x1d{left:275.983349px;}
.x1e{left:351.559341px;}
.x1c{left:374.515343px;}
.x20{left:446.539352px;}
.xf{left:457.092894px;}
.xe{left:469.088094px;}
.x19{left:472.075644px;}
.x22{left:479.586594px;}
.x1b{left:487.069652px;}
.x1a{left:496.080744px;}
.x21{left:590.323334px;}
.x11{left:636.417023px;}
.x10{left:694.929886px;}
.x1f{left:741.068390px;}
.x13{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:23.466471pt;}
.v4{vertical-align:48.000000pt;}
.ls6{letter-spacing:-1.109333pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls7{letter-spacing:-0.682667pt;}
.lsa{letter-spacing:-0.418133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.ls9{letter-spacing:0.052267pt;}
.ls8{letter-spacing:0.627200pt;}
.ls5{letter-spacing:0.731733pt;}
.ls1{letter-spacing:4.853333pt;}
.ls2{letter-spacing:34.050117pt;}
.ws0{word-spacing:-16.874667pt;}
.wsf3{word-spacing:-12.909867pt;}
.ws6e{word-spacing:-12.387200pt;}
.wsf2{word-spacing:-12.334933pt;}
.ws16{word-spacing:-12.282667pt;}
.wsf4{word-spacing:-11.969067pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws103{word-spacing:-10.156800pt;}
.wsab{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws6{word-spacing:-8.760000pt;}
.ws155{word-spacing:-8.280000pt;}
.wsb6{word-spacing:-7.680000pt;}
.ws9{word-spacing:-7.242667pt;}
.ws156{word-spacing:-6.132000pt;}
.ws8{word-spacing:-2.464000pt;}
.ws15f{word-spacing:-1.680000pt;}
.ws118{word-spacing:-1.493333pt;}
.ws160{word-spacing:-1.400000pt;}
.ws136{word-spacing:-1.202133pt;}
.wsc3{word-spacing:-0.940800pt;}
.ws119{word-spacing:-0.888533pt;}
.ws12c{word-spacing:-0.836267pt;}
.ws133{word-spacing:-0.784000pt;}
.wse{word-spacing:-0.731733pt;}
.ws7{word-spacing:-0.693333pt;}
.ws77{word-spacing:-0.679467pt;}
.ws93{word-spacing:-0.574933pt;}
.wsbe{word-spacing:-0.522667pt;}
.ws142{word-spacing:-0.470400pt;}
.ws8d{word-spacing:-0.418133pt;}
.ws5e{word-spacing:-0.365867pt;}
.ws15e{word-spacing:-0.261333pt;}
.wsdb{word-spacing:-0.209067pt;}
.wsfa{word-spacing:-0.156800pt;}
.ws125{word-spacing:-0.052267pt;}
.ws1{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.052267pt;}
.ws74{word-spacing:0.104533pt;}
.ws41{word-spacing:0.156800pt;}
.ws114{word-spacing:0.209067pt;}
.ws25{word-spacing:0.418133pt;}
.ws81{word-spacing:0.470400pt;}
.ws99{word-spacing:0.522667pt;}
.ws2a{word-spacing:0.574933pt;}
.ws60{word-spacing:0.627200pt;}
.wscd{word-spacing:0.679467pt;}
.wsc4{word-spacing:0.731733pt;}
.wsf{word-spacing:0.784000pt;}
.ws154{word-spacing:0.836267pt;}
.ws15d{word-spacing:0.888533pt;}
.ws13f{word-spacing:0.993067pt;}
.ws116{word-spacing:1.045333pt;}
.wsa1{word-spacing:1.097600pt;}
.wsb2{word-spacing:1.149867pt;}
.ws32{word-spacing:1.202133pt;}
.wsa0{word-spacing:1.254400pt;}
.wsa4{word-spacing:1.306667pt;}
.wsc{word-spacing:1.358933pt;}
.ws117{word-spacing:1.411200pt;}
.wsc9{word-spacing:1.463467pt;}
.wsc6{word-spacing:1.568000pt;}
.ws5f{word-spacing:1.620267pt;}
.ws96{word-spacing:1.672533pt;}
.ws9c{word-spacing:1.724800pt;}
.wsfc{word-spacing:1.777067pt;}
.wsc0{word-spacing:1.829333pt;}
.ws146{word-spacing:1.881600pt;}
.ws6b{word-spacing:1.933867pt;}
.wsdc{word-spacing:1.986133pt;}
.ws106{word-spacing:2.090667pt;}
.wsa9{word-spacing:2.142933pt;}
.ws50{word-spacing:2.195200pt;}
.ws10f{word-spacing:2.247467pt;}
.ws33{word-spacing:2.299733pt;}
.ws101{word-spacing:2.352000pt;}
.ws61{word-spacing:2.456533pt;}
.ws134{word-spacing:2.508800pt;}
.ws19{word-spacing:2.561067pt;}
.ws2c{word-spacing:2.613333pt;}
.wsb7{word-spacing:2.665600pt;}
.ws83{word-spacing:2.717867pt;}
.ws7b{word-spacing:2.770133pt;}
.ws45{word-spacing:2.822400pt;}
.wsc1{word-spacing:2.874667pt;}
.ws34{word-spacing:2.926933pt;}
.ws54{word-spacing:2.979200pt;}
.ws68{word-spacing:3.031467pt;}
.ws110{word-spacing:3.083733pt;}
.ws5b{word-spacing:3.136000pt;}
.ws11c{word-spacing:3.188267pt;}
.ws1c{word-spacing:3.240533pt;}
.ws9f{word-spacing:3.292800pt;}
.ws7a{word-spacing:3.397333pt;}
.ws2b{word-spacing:3.449600pt;}
.wsfd{word-spacing:3.501867pt;}
.ws58{word-spacing:3.554133pt;}
.ws102{word-spacing:3.606400pt;}
.ws143{word-spacing:3.658667pt;}
.ws1b{word-spacing:3.710933pt;}
.ws37{word-spacing:3.763200pt;}
.wsa3{word-spacing:3.815467pt;}
.ws141{word-spacing:3.867733pt;}
.ws3c{word-spacing:3.920000pt;}
.ws9e{word-spacing:3.972267pt;}
.wsc5{word-spacing:4.024533pt;}
.ws150{word-spacing:4.181333pt;}
.wsd3{word-spacing:4.233600pt;}
.ws1f{word-spacing:4.285867pt;}
.wsd{word-spacing:4.338133pt;}
.wsd5{word-spacing:4.390400pt;}
.ws84{word-spacing:4.442667pt;}
.wsa2{word-spacing:4.494933pt;}
.ws104{word-spacing:4.599467pt;}
.ws49{word-spacing:4.651733pt;}
.ws12d{word-spacing:4.756261pt;}
.wsd6{word-spacing:4.808533pt;}
.ws46{word-spacing:4.860800pt;}
.wsca{word-spacing:4.913067pt;}
.ws21{word-spacing:4.965333pt;}
.wse7{word-spacing:5.017600pt;}
.ws22{word-spacing:5.069867pt;}
.wsd0{word-spacing:5.122133pt;}
.ws91{word-spacing:5.174400pt;}
.wsb9{word-spacing:5.226667pt;}
.ws11{word-spacing:5.278933pt;}
.ws11d{word-spacing:5.331200pt;}
.wsf7{word-spacing:5.383467pt;}
.ws14{word-spacing:5.488000pt;}
.ws66{word-spacing:5.540267pt;}
.ws30{word-spacing:5.592533pt;}
.wsb8{word-spacing:5.749333pt;}
.wsc7{word-spacing:5.801600pt;}
.ws108{word-spacing:5.853867pt;}
.wsbf{word-spacing:5.906133pt;}
.ws151{word-spacing:5.958400pt;}
.ws40{word-spacing:6.010667pt;}
.wsee{word-spacing:6.062933pt;}
.wscb{word-spacing:6.115200pt;}
.wsf0{word-spacing:6.167467pt;}
.ws42{word-spacing:6.219733pt;}
.ws48{word-spacing:6.272000pt;}
.ws12a{word-spacing:6.324267pt;}
.wsdd{word-spacing:6.376533pt;}
.ws137{word-spacing:6.428800pt;}
.ws2e{word-spacing:6.481067pt;}
.ws4a{word-spacing:6.533333pt;}
.wsb3{word-spacing:6.585600pt;}
.wsa7{word-spacing:6.637867pt;}
.ws10b{word-spacing:6.690133pt;}
.ws13{word-spacing:6.742400pt;}
.ws1a{word-spacing:6.794667pt;}
.ws47{word-spacing:6.846933pt;}
.wsa5{word-spacing:6.899200pt;}
.ws5c{word-spacing:6.951467pt;}
.ws131{word-spacing:7.003733pt;}
.ws113{word-spacing:7.056000pt;}
.ws1d{word-spacing:7.108267pt;}
.ws138{word-spacing:7.160533pt;}
.wsea{word-spacing:7.212800pt;}
.wsd9{word-spacing:7.265067pt;}
.wsf9{word-spacing:7.317333pt;}
.wsc2{word-spacing:7.369600pt;}
.ws8e{word-spacing:7.421867pt;}
.wse1{word-spacing:7.474133pt;}
.ws8f{word-spacing:7.526400pt;}
.wsec{word-spacing:7.578667pt;}
.wsc8{word-spacing:7.630933pt;}
.wsa6{word-spacing:7.683200pt;}
.ws18{word-spacing:7.735467pt;}
.ws135{word-spacing:7.787733pt;}
.wsba{word-spacing:7.840000pt;}
.ws59{word-spacing:7.892267pt;}
.ws57{word-spacing:7.996800pt;}
.ws11e{word-spacing:8.049067pt;}
.ws71{word-spacing:8.101333pt;}
.wsda{word-spacing:8.153600pt;}
.wsa8{word-spacing:8.205867pt;}
.ws69{word-spacing:8.258133pt;}
.wse2{word-spacing:8.310400pt;}
.ws4b{word-spacing:8.362667pt;}
.ws124{word-spacing:8.414933pt;}
.ws15c{word-spacing:8.519467pt;}
.ws29{word-spacing:8.571733pt;}
.ws130{word-spacing:8.676267pt;}
.ws121{word-spacing:8.728533pt;}
.wsdf{word-spacing:8.780800pt;}
.ws13e{word-spacing:8.833067pt;}
.ws6a{word-spacing:8.885333pt;}
.ws79{word-spacing:8.937600pt;}
.ws140{word-spacing:8.989867pt;}
.ws109{word-spacing:9.042133pt;}
.ws4e{word-spacing:9.094400pt;}
.ws158{word-spacing:9.198933pt;}
.ws94{word-spacing:9.251200pt;}
.wsd8{word-spacing:9.303467pt;}
.ws3f{word-spacing:9.355733pt;}
.ws1e{word-spacing:9.408000pt;}
.ws13c{word-spacing:9.460267pt;}
.ws10{word-spacing:9.564800pt;}
.ws85{word-spacing:9.669333pt;}
.ws55{word-spacing:9.721600pt;}
.wse3{word-spacing:9.773867pt;}
.ws7e{word-spacing:9.826133pt;}
.ws53{word-spacing:9.878400pt;}
.ws105{word-spacing:9.930667pt;}
.ws4c{word-spacing:9.982933pt;}
.ws28{word-spacing:10.035200pt;}
.wsde{word-spacing:10.087467pt;}
.wsbb{word-spacing:10.192000pt;}
.wse8{word-spacing:10.244267pt;}
.ws7c{word-spacing:10.296533pt;}
.ws9d{word-spacing:10.348800pt;}
.ws152{word-spacing:10.401067pt;}
.ws26{word-spacing:10.453333pt;}
.ws15{word-spacing:10.505600pt;}
.ws43{word-spacing:10.557867pt;}
.ws80{word-spacing:10.610133pt;}
.ws4d{word-spacing:10.662400pt;}
.ws64{word-spacing:10.766933pt;}
.ws78{word-spacing:10.819200pt;}
.ws9a{word-spacing:10.871467pt;}
.wsfe{word-spacing:10.923733pt;}
.wsb5{word-spacing:10.976000pt;}
.ws56{word-spacing:11.028267pt;}
.ws11b{word-spacing:11.132800pt;}
.wsb{word-spacing:11.185067pt;}
.ws36{word-spacing:11.237333pt;}
.ws24{word-spacing:11.289600pt;}
.wsf1{word-spacing:11.341867pt;}
.ws13d{word-spacing:11.446400pt;}
.ws12b{word-spacing:11.498667pt;}
.wsd7{word-spacing:11.550933pt;}
.wsce{word-spacing:11.603200pt;}
.ws75{word-spacing:11.655467pt;}
.ws14c{word-spacing:11.707733pt;}
.ws92{word-spacing:11.864533pt;}
.ws12{word-spacing:12.073600pt;}
.ws3a{word-spacing:12.125867pt;}
.ws149{word-spacing:12.178133pt;}
.ws115{word-spacing:12.387200pt;}
.ws90{word-spacing:12.439467pt;}
.ws132{word-spacing:12.491733pt;}
.ws20{word-spacing:12.596267pt;}
.wsa{word-spacing:12.648533pt;}
.ws122{word-spacing:12.700800pt;}
.wsf6{word-spacing:12.753067pt;}
.ws10c{word-spacing:12.857600pt;}
.wse4{word-spacing:12.909867pt;}
.ws7f{word-spacing:12.962133pt;}
.ws10e{word-spacing:13.118933pt;}
.ws35{word-spacing:13.223467pt;}
.wsd4{word-spacing:13.275733pt;}
.ws112{word-spacing:13.328000pt;}
.ws100{word-spacing:13.380267pt;}
.wsb4{word-spacing:13.432533pt;}
.ws17{word-spacing:13.589333pt;}
.ws3b{word-spacing:13.693867pt;}
.ws13b{word-spacing:13.746133pt;}
.ws67{word-spacing:13.798400pt;}
.ws126{word-spacing:14.007467pt;}
.ws107{word-spacing:14.059733pt;}
.ws72{word-spacing:14.112000pt;}
.ws14d{word-spacing:14.164267pt;}
.ws44{word-spacing:14.216533pt;}
.ws14f{word-spacing:14.373333pt;}
.wscc{word-spacing:14.425600pt;}
.ws52{word-spacing:14.477867pt;}
.ws144{word-spacing:14.530133pt;}
.wse5{word-spacing:14.686933pt;}
.ws5a{word-spacing:14.739200pt;}
.ws12f{word-spacing:14.896000pt;}
.ws2d{word-spacing:15.000533pt;}
.ws6c{word-spacing:15.052800pt;}
.ws70{word-spacing:15.105067pt;}
.ws111{word-spacing:15.157333pt;}
.ws73{word-spacing:15.209600pt;}
.ws2f{word-spacing:15.261867pt;}
.wsbc{word-spacing:15.314133pt;}
.ws10a{word-spacing:15.418667pt;}
.ws157{word-spacing:15.575467pt;}
.ws51{word-spacing:15.680000pt;}
.ws65{word-spacing:15.732267pt;}
.wse9{word-spacing:15.784533pt;}
.ws10d{word-spacing:15.889067pt;}
.ws127{word-spacing:15.941333pt;}
.ws7d{word-spacing:15.993600pt;}
.wsf8{word-spacing:16.045867pt;}
.ws82{word-spacing:16.254933pt;}
.ws159{word-spacing:16.411733pt;}
.wse6{word-spacing:16.620800pt;}
.ws15a{word-spacing:16.673067pt;}
.ws97{word-spacing:16.777600pt;}
.ws11f{word-spacing:16.882133pt;}
.ws98{word-spacing:16.934400pt;}
.ws12e{word-spacing:16.986667pt;}
.ws145{word-spacing:17.143467pt;}
.ws3d{word-spacing:17.195733pt;}
.wseb{word-spacing:17.352533pt;}
.ws6d{word-spacing:17.613867pt;}
.wse0{word-spacing:17.718400pt;}
.ws128{word-spacing:17.875200pt;}
.ws153{word-spacing:17.927467pt;}
.ws63{word-spacing:18.084267pt;}
.ws13a{word-spacing:18.136533pt;}
.ws39{word-spacing:18.293333pt;}
.ws76{word-spacing:18.659200pt;}
.ws129{word-spacing:18.711467pt;}
.wsff{word-spacing:18.868267pt;}
.ws6f{word-spacing:18.972800pt;}
.ws9b{word-spacing:19.077333pt;}
.ws62{word-spacing:19.234133pt;}
.ws31{word-spacing:19.286400pt;}
.ws14a{word-spacing:19.390933pt;}
.ws123{word-spacing:19.547733pt;}
.wsd1{word-spacing:19.652267pt;}
.ws27{word-spacing:19.809067pt;}
.wsd2{word-spacing:20.122667pt;}
.wscf{word-spacing:20.802133pt;}
.ws148{word-spacing:20.854400pt;}
.wsbd{word-spacing:21.481600pt;}
.ws147{word-spacing:21.586133pt;}
.ws14e{word-spacing:21.847467pt;}
.wsfb{word-spacing:22.474667pt;}
.ws120{word-spacing:22.526933pt;}
.wsed{word-spacing:22.788267pt;}
.ws11a{word-spacing:23.467733pt;}
.wsef{word-spacing:23.885867pt;}
.ws15b{word-spacing:25.976533pt;}
.ws38{word-spacing:26.394667pt;}
.wsf5{word-spacing:26.917333pt;}
.ws14b{word-spacing:26.969600pt;}
.ws4f{word-spacing:27.805867pt;}
.ws95{word-spacing:29.112533pt;}
.ws5d{word-spacing:29.792000pt;}
.ws23{word-spacing:30.941867pt;}
.ws139{word-spacing:40.506667pt;}
.wsac{word-spacing:433.241587pt;}
.wsae{word-spacing:518.442654pt;}
.wsaf{word-spacing:520.234654pt;}
.wsb1{word-spacing:525.781321pt;}
.wsaa{word-spacing:554.666654pt;}
.wsad{word-spacing:574.207987pt;}
.wsb0{word-spacing:594.431987pt;}
.ws87{word-spacing:783.577565pt;}
.ws89{word-spacing:868.778632pt;}
.ws8a{word-spacing:870.570632pt;}
.ws8c{word-spacing:876.117299pt;}
.ws86{word-spacing:905.002632pt;}
.ws88{word-spacing:924.543965pt;}
.ws8b{word-spacing:944.767965pt;}
._b{margin-left:-9.766933pt;}
._31{margin-left:-8.512960pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-5.597885pt;}
._3{margin-left:-3.808000pt;}
._7{margin-left:-2.848515pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.299733pt;}
._8{width:2.603200pt;}
._4{width:3.507200pt;}
._0{width:4.966400pt;}
._16{width:6.747200pt;}
._11{width:7.799449pt;}
._c{width:8.937600pt;}
._12{width:10.662400pt;}
._13{width:12.910933pt;}
._d{width:14.128000pt;}
._a{width:15.801589pt;}
._2e{width:21.063467pt;}
._2f{width:22.370133pt;}
._30{width:23.938133pt;}
._14{width:26.237867pt;}
._2d{width:28.485333pt;}
._15{width:31.412267pt;}
._10{width:33.024000pt;}
._6{width:34.047434pt;}
._32{width:39.808000pt;}
._29{width:56.558933pt;}
._1d{width:61.695987pt;}
._27{width:155.611200pt;}
._21{width:158.762654pt;}
._f{width:202.325333pt;}
._24{width:233.710894pt;}
._1f{width:256.793587pt;}
._23{width:278.442628pt;}
._20{width:289.791987pt;}
._e{width:313.856000pt;}
._1e{width:337.450654pt;}
._17{width:412.031965pt;}
._1b{width:509.098632pt;}
._28{width:515.029333pt;}
._25{width:520.857600pt;}
._2a{width:539.229867pt;}
._19{width:607.129565pt;}
._1a{width:640.127965pt;}
._22{width:679.705561pt;}
._18{width:687.786632pt;}
._2c{width:870.815400pt;}
._26{width:948.266667pt;}
._1c{width:1016.644251pt;}
._2b{width:1388.629267pt;}
.fsd{font-size:28.000000pt;}
.fs9{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs3{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fse{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:66.292800pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:4.490286pt;}
.yc{bottom:7.146667pt;}
.y50{bottom:24.825602pt;}
.y3d{bottom:67.374933pt;}
.y3c{bottom:78.042933pt;}
.y13{bottom:88.706667pt;}
.y3b{bottom:88.710933pt;}
.y23f{bottom:89.230796pt;}
.y219{bottom:89.477336pt;}
.y8b{bottom:89.826669pt;}
.y22d{bottom:90.557729pt;}
.y2de{bottom:93.126003pt;}
.yba{bottom:94.145863pt;}
.y30b{bottom:94.433736pt;}
.y1e5{bottom:95.106803pt;}
.y17b{bottom:95.294396pt;}
.y17e{bottom:95.307461pt;}
.y178{bottom:96.219996pt;}
.y132{bottom:96.717336pt;}
.y382{bottom:96.983999pt;}
.y2a2{bottom:99.224396pt;}
.y3a{bottom:99.378933pt;}
.y284{bottom:99.891062pt;}
.y1a7{bottom:100.300796pt;}
.y1a0{bottom:100.980263pt;}
.y17{bottom:101.040000pt;}
.y3f6{bottom:101.638021pt;}
.y23e{bottom:105.224396pt;}
.y218{bottom:105.483736pt;}
.yca{bottom:105.583999pt;}
.y8a{bottom:105.820269pt;}
.yd7{bottom:106.257066pt;}
.y22c{bottom:106.608939pt;}
.y3b0{bottom:107.767069pt;}
.y2dd{bottom:109.119603pt;}
.y39{bottom:110.046933pt;}
.yb9{bottom:110.139463pt;}
.y331{bottom:110.440136pt;}
.y30a{bottom:110.452936pt;}
.y1e4{bottom:111.100403pt;}
.y353{bottom:111.138803pt;}
.y17a{bottom:111.287996pt;}
.y17d{bottom:111.301061pt;}
.y177{bottom:112.422663pt;}
.y3f5{bottom:113.638021pt;}
.y2a1{bottom:115.230796pt;}
.y283{bottom:115.942273pt;}
.y1a6{bottom:116.294396pt;}
.y19f{bottom:116.973863pt;}
.y16{bottom:120.666667pt;}
.y38{bottom:120.714933pt;}
.y133{bottom:120.876800pt;}
.y23d{bottom:121.281864pt;}
.y217{bottom:121.477336pt;}
.yc9{bottom:121.577599pt;}
.y89{bottom:121.813869pt;}
.yd6{bottom:122.250666pt;}
.y22b{bottom:122.602539pt;}
.y2dc{bottom:125.113203pt;}
.y3f4{bottom:125.638021pt;}
.yb8{bottom:126.133063pt;}
.y330{bottom:126.433736pt;}
.y309{bottom:126.446536pt;}
.y1e3{bottom:127.132403pt;}
.y179{bottom:127.281596pt;}
.y17c{bottom:127.294661pt;}
.y176{bottom:128.550663pt;}
.y2a0{bottom:131.224396pt;}
.y37{bottom:131.382933pt;}
.y3af{bottom:131.767069pt;}
.y282{bottom:131.935873pt;}
.y19e{bottom:132.967463pt;}
.y23c{bottom:137.275464pt;}
.y216{bottom:137.534936pt;}
.yc8{bottom:137.571199pt;}
.y3f3{bottom:137.638021pt;}
.y14{bottom:137.733333pt;}
.y88{bottom:137.807469pt;}
.yd5{bottom:138.244266pt;}
.y22a{bottom:138.596139pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y2db{bottom:141.106803pt;}
.yb7{bottom:142.126663pt;}
.y308{bottom:142.440136pt;}
.y32f{bottom:142.459336pt;}
.y1e2{bottom:143.126003pt;}
.y175{bottom:144.689329pt;}
.y29f{bottom:147.237206pt;}
.y3ae{bottom:147.767069pt;}
.y281{bottom:147.929473pt;}
.y19d{bottom:148.961063pt;}
.y3f2{bottom:149.638021pt;}
.y23b{bottom:153.269064pt;}
.y215{bottom:153.528536pt;}
.yc7{bottom:153.564799pt;}
.y87{bottom:153.801069pt;}
.yd4{bottom:154.237866pt;}
.y229{bottom:154.589739pt;}
.y2da{bottom:157.100403pt;}
.yb6{bottom:158.120263pt;}
.y32e{bottom:158.452936pt;}
.y1e1{bottom:159.119603pt;}
.y3ad{bottom:159.767069pt;}
.y174{bottom:160.817329pt;}
.y3f1{bottom:161.638021pt;}
.y29e{bottom:163.230806pt;}
.y280{bottom:163.923073pt;}
.y19c{bottom:164.954663pt;}
.y55{bottom:165.049459pt;}
.y3ac{bottom:167.767069pt;}
.y23a{bottom:169.262664pt;}
.y214{bottom:169.522136pt;}
.yc6{bottom:169.603199pt;}
.y86{bottom:169.794669pt;}
.yd3{bottom:170.231466pt;}
.y228{bottom:170.583339pt;}
.y2d9{bottom:173.132403pt;}
.y3f0{bottom:173.638021pt;}
.yb5{bottom:174.113863pt;}
.y32d{bottom:174.446536pt;}
.y307{bottom:175.106803pt;}
.y1e0{bottom:175.113203pt;}
.y173{bottom:176.945329pt;}
.y54{bottom:177.049459pt;}
.y29d{bottom:179.224406pt;}
.y27f{bottom:179.916673pt;}
.y19b{bottom:180.948263pt;}
.y239{bottom:185.256264pt;}
.y213{bottom:185.515736pt;}
.yc5{bottom:185.596799pt;}
.y3ef{bottom:185.638021pt;}
.y85{bottom:185.788269pt;}
.yd2{bottom:186.231466pt;}
.y227{bottom:186.576939pt;}
.y195{bottom:188.061991pt;}
.y2d8{bottom:189.126003pt;}
.y4d{bottom:189.952797pt;}
.yb4{bottom:190.107463pt;}
.y32c{bottom:190.440136pt;}
.y306{bottom:191.100403pt;}
.y1df{bottom:191.106803pt;}
.y3ab{bottom:191.767069pt;}
.y53{bottom:193.049459pt;}
.y172{bottom:193.073329pt;}
.y29c{bottom:195.228673pt;}
.y27e{bottom:195.910273pt;}
.y1a5{bottom:196.961063pt;}
.y19a{bottom:196.967463pt;}
.y3ee{bottom:197.638021pt;}
.y52{bottom:201.049459pt;}
.y238{bottom:201.249864pt;}
.y212{bottom:201.509336pt;}
.yc4{bottom:201.590399pt;}
.y84{bottom:201.781869pt;}
.y226{bottom:202.570539pt;}
.y3aa{bottom:203.767069pt;}
.y2d7{bottom:205.119603pt;}
.y4c{bottom:205.946397pt;}
.yb3{bottom:206.145863pt;}
.y32b{bottom:206.433736pt;}
.y1de{bottom:207.100403pt;}
.y305{bottom:207.126003pt;}
.y171{bottom:209.201329pt;}
.y3ed{bottom:209.638021pt;}
.y29b{bottom:211.224406pt;}
.y27d{bottom:211.903873pt;}
.y1a4{bottom:212.954663pt;}
.y199{bottom:212.961063pt;}
.y237{bottom:217.243464pt;}
.y211{bottom:217.502936pt;}
.y83{bottom:217.775469pt;}
.y225{bottom:218.564139pt;}
.y2d6{bottom:221.113203pt;}
.y3ec{bottom:221.638021pt;}
.y4b{bottom:221.939997pt;}
.yb2{bottom:222.139463pt;}
.y32a{bottom:222.446536pt;}
.y1dd{bottom:223.100403pt;}
.y304{bottom:223.119603pt;}
.y170{bottom:225.339996pt;}
.y3a9{bottom:227.767069pt;}
.y27c{bottom:227.897473pt;}
.y1a3{bottom:228.948263pt;}
.y198{bottom:228.954663pt;}
.y236{bottom:233.237064pt;}
.y210{bottom:233.496536pt;}
.y3eb{bottom:233.638021pt;}
.y82{bottom:233.769069pt;}
.yc3{bottom:234.257066pt;}
.y224{bottom:234.557739pt;}
.yd1{bottom:234.904532pt;}
.y2d5{bottom:237.106803pt;}
.y4a{bottom:237.933597pt;}
.yb1{bottom:238.133063pt;}
.y329{bottom:238.440136pt;}
.y1dc{bottom:239.113203pt;}
.y3a8{bottom:239.767069pt;}
.y16f{bottom:241.467996pt;}
.y27b{bottom:243.891073pt;}
.y197{bottom:244.948263pt;}
.y1a2{bottom:244.987994pt;}
.y3ea{bottom:245.638021pt;}
.y235{bottom:249.230664pt;}
.y20f{bottom:249.490136pt;}
.y81{bottom:249.762669pt;}
.yc2{bottom:250.250666pt;}
.y223{bottom:250.563997pt;}
.yd0{bottom:250.898132pt;}
.y2d4{bottom:253.100403pt;}
.y43{bottom:253.224528pt;}
.y49{bottom:253.927197pt;}
.yb0{bottom:254.126663pt;}
.y328{bottom:254.433736pt;}
.y1db{bottom:255.106803pt;}
.y16e{bottom:257.595996pt;}
.y3e9{bottom:257.638021pt;}
.y27a{bottom:259.897330pt;}
.y29a{bottom:259.929351pt;}
.y196{bottom:260.948263pt;}
.y1a1{bottom:260.981594pt;}
.y3a7{bottom:263.767069pt;}
.y20e{bottom:265.483736pt;}
.y80{bottom:265.756269pt;}
.yc1{bottom:266.244266pt;}
.y222{bottom:266.557597pt;}
.ycf{bottom:266.898132pt;}
.y2d3{bottom:269.170782pt;}
.y42{bottom:269.230928pt;}
.y3e8{bottom:269.638021pt;}
.y48{bottom:269.920797pt;}
.yaf{bottom:270.120263pt;}
.y327{bottom:270.472116pt;}
.y1da{bottom:271.100403pt;}
.y16d{bottom:273.734663pt;}
.y3a6{bottom:275.767069pt;}
.y279{bottom:275.890930pt;}
.y299{bottom:275.922951pt;}
.y20d{bottom:281.477336pt;}
.y3e7{bottom:281.638021pt;}
.y7f{bottom:281.749869pt;}
.y234{bottom:281.897330pt;}
.y221{bottom:282.602417pt;}
.yce{bottom:282.937866pt;}
.y2d2{bottom:285.164382pt;}
.y41{bottom:285.224528pt;}
.y47{bottom:285.927197pt;}
.yae{bottom:286.113863pt;}
.y326{bottom:286.465716pt;}
.y303{bottom:287.100403pt;}
.y1d9{bottom:287.106803pt;}
.y352{bottom:287.164382pt;}
.y16c{bottom:289.862663pt;}
.y298{bottom:291.916551pt;}
.y278{bottom:291.929351pt;}
.y3e6{bottom:293.638021pt;}
.y20c{bottom:297.483736pt;}
.y7e{bottom:297.743469pt;}
.y233{bottom:297.890930pt;}
.y220{bottom:298.596017pt;}
.yc0{bottom:298.910932pt;}
.ycd{bottom:298.931466pt;}
.y3a5{bottom:299.767069pt;}
.y2d1{bottom:301.157982pt;}
.y40{bottom:301.224528pt;}
.y16b{bottom:301.862663pt;}
.y46{bottom:301.920797pt;}
.yad{bottom:302.107463pt;}
.y325{bottom:302.459316pt;}
.y1d8{bottom:303.100403pt;}
.y351{bottom:303.157982pt;}
.y3e5{bottom:305.638021pt;}
.ya{bottom:306.382667pt;}
.y297{bottom:307.910151pt;}
.y277{bottom:307.922951pt;}
.y20b{bottom:313.477336pt;}
.y7d{bottom:313.743469pt;}
.y232{bottom:313.906254pt;}
.y21f{bottom:314.589617pt;}
.ybf{bottom:314.904532pt;}
.ycc{bottom:314.925066pt;}
.y2d0{bottom:317.151582pt;}
.y3f{bottom:317.224528pt;}
.y3e4{bottom:317.638021pt;}
.y45{bottom:317.930661pt;}
.yac{bottom:318.107463pt;}
.y324{bottom:318.452916pt;}
.y1d7{bottom:319.106803pt;}
.y350{bottom:319.151582pt;}
.y1be{bottom:320.333349pt;}
.y296{bottom:323.903751pt;}
.y276{bottom:323.916551pt;}
.y16a{bottom:325.766663pt;}
.y20a{bottom:329.541336pt;}
.y3e3{bottom:329.638021pt;}
.y7c{bottom:329.820249pt;}
.y231{bottom:329.899854pt;}
.y21e{bottom:330.583217pt;}
.ybe{bottom:330.898132pt;}
.ycb{bottom:330.918666pt;}
.y3a4{bottom:331.767049pt;}
.y1bd{bottom:332.333349pt;}
.y2cf{bottom:333.145182pt;}
.y3e{bottom:333.224528pt;}
.y44{bottom:333.924261pt;}
.yab{bottom:334.171463pt;}
.y323{bottom:334.446516pt;}
.y1d6{bottom:335.100403pt;}
.y34f{bottom:335.145182pt;}
.y295{bottom:339.897351pt;}
.y275{bottom:339.910151pt;}
.y3e2{bottom:341.638021pt;}
.yd{bottom:343.546667pt;}
.y3a3{bottom:343.767049pt;}
.y1bc{bottom:344.333349pt;}
.y209{bottom:345.534936pt;}
.y7b{bottom:345.813849pt;}
.y230{bottom:345.893454pt;}
.y21d{bottom:346.576817pt;}
.y169{bottom:347.378011pt;}
.y2ce{bottom:349.138782pt;}
.yaa{bottom:350.165063pt;}
.y322{bottom:350.440116pt;}
.y1d5{bottom:351.113182pt;}
.y34e{bottom:351.138782pt;}
.y9{bottom:351.724000pt;}
.y302{bottom:351.767049pt;}
.y3e1{bottom:353.638021pt;}
.y294{bottom:355.890951pt;}
.y274{bottom:355.903751pt;}
.y1bb{bottom:360.536015pt;}
.y208{bottom:361.528536pt;}
.y7a{bottom:361.807449pt;}
.y21c{bottom:362.570417pt;}
.y2cd{bottom:365.132382pt;}
.y3e0{bottom:365.638021pt;}
.ya9{bottom:366.158663pt;}
.y321{bottom:366.433716pt;}
.y1d4{bottom:367.106782pt;}
.y34d{bottom:367.132382pt;}
.y301{bottom:367.767049pt;}
.y273{bottom:371.897351pt;}
.y293{bottom:371.903751pt;}
.y1ba{bottom:372.536015pt;}
.y207{bottom:377.522136pt;}
.y3df{bottom:377.638021pt;}
.y79{bottom:377.801049pt;}
.y22f{bottom:378.560121pt;}
.y21b{bottom:378.564017pt;}
.y36{bottom:378.857829pt;}
.y3a2{bottom:379.767049pt;}
.y2cc{bottom:381.125982pt;}
.ya8{bottom:382.152263pt;}
.y320{bottom:382.452916pt;}
.y1d3{bottom:383.100382pt;}
.y34c{bottom:383.125982pt;}
.y300{bottom:383.786249pt;}
.y1b9{bottom:384.536015pt;}
.yb{bottom:386.533333pt;}
.y272{bottom:387.890951pt;}
.y292{bottom:387.897351pt;}
.y3de{bottom:389.638021pt;}
.yfe{bottom:391.963854pt;}
.y206{bottom:393.515736pt;}
.y78{bottom:393.794649pt;}
.y22e{bottom:394.553721pt;}
.y21a{bottom:394.557617pt;}
.y8{bottom:397.065333pt;}
.y2cb{bottom:397.119582pt;}
.ya7{bottom:398.145863pt;}
.y31f{bottom:398.446516pt;}
.y35{bottom:398.857829pt;}
.y36b{bottom:399.100382pt;}
.y1d2{bottom:399.106782pt;}
.y381{bottom:399.767049pt;}
.y2ff{bottom:399.779849pt;}
.y1b8{bottom:400.664015pt;}
.y3dd{bottom:401.638021pt;}
.y3a1{bottom:403.767049pt;}
.y291{bottom:403.890951pt;}
.y271{bottom:403.922951pt;}
.yfd{bottom:403.963854pt;}
.y205{bottom:409.509336pt;}
.y77{bottom:409.788249pt;}
.y1b7{bottom:412.664015pt;}
.y2ca{bottom:413.113182pt;}
.y3dc{bottom:413.638021pt;}
.y14a{bottom:413.773449pt;}
.ya6{bottom:414.139463pt;}
.y31e{bottom:414.440116pt;}
.y168{bottom:414.491316pt;}
.y34{bottom:414.857829pt;}
.y1d1{bottom:415.100382pt;}
.y36a{bottom:415.106782pt;}
.y3a0{bottom:415.767049pt;}
.y2fe{bottom:415.773449pt;}
.y34b{bottom:415.792649pt;}
.y380{bottom:415.811849pt;}
.yfc{bottom:415.963854pt;}
.y290{bottom:419.897351pt;}
.y270{bottom:419.916551pt;}
.y1b6{bottom:424.664015pt;}
.y204{bottom:425.502936pt;}
.y3db{bottom:425.638021pt;}
.y76{bottom:425.781849pt;}
.y39f{bottom:427.767049pt;}
.y2c9{bottom:429.106782pt;}
.y3f9{bottom:429.637980pt;}
.y149{bottom:429.767049pt;}
.ya5{bottom:430.133063pt;}
.y31d{bottom:430.433716pt;}
.y167{bottom:430.484916pt;}
.y33{bottom:430.857829pt;}
.y369{bottom:431.100382pt;}
.y1d0{bottom:431.106782pt;}
.y2fd{bottom:431.767049pt;}
.y34a{bottom:431.786249pt;}
.y37f{bottom:431.805449pt;}
.yfb{bottom:432.166520pt;}
.y10{bottom:433.826667pt;}
.y28f{bottom:435.890951pt;}
.y26f{bottom:435.910151pt;}
.y1b5{bottom:436.664015pt;}
.y3da{bottom:437.638021pt;}
.y39e{bottom:439.767049pt;}
.y203{bottom:441.496536pt;}
.y3f8{bottom:441.637980pt;}
.y75{bottom:441.775449pt;}
.y7{bottom:442.406667pt;}
.yfa{bottom:444.166520pt;}
.y262{bottom:444.998683pt;}
.y2c8{bottom:445.100382pt;}
.y148{bottom:445.779849pt;}
.ya4{bottom:446.126663pt;}
.y31c{bottom:446.440116pt;}
.y166{bottom:446.478516pt;}
.y32{bottom:446.857829pt;}
.y1cf{bottom:447.100382pt;}
.y368{bottom:447.132382pt;}
.y2fc{bottom:447.773449pt;}
.y349{bottom:447.779849pt;}
.y37e{bottom:447.799049pt;}
.y1b4{bottom:448.664015pt;}
.y3d9{bottom:449.638021pt;}
.y39d{bottom:451.767049pt;}
.y26e{bottom:451.903751pt;}
.y28e{bottom:451.922951pt;}
.y3f7{bottom:453.637980pt;}
.y261{bottom:456.998683pt;}
.y202{bottom:457.490136pt;}
.y74{bottom:457.769049pt;}
.yf9{bottom:460.294520pt;}
.y2c7{bottom:461.132382pt;}
.y3d8{bottom:461.638021pt;}
.y147{bottom:461.773449pt;}
.ya3{bottom:462.120263pt;}
.y31b{bottom:462.433716pt;}
.y165{bottom:462.472116pt;}
.y31{bottom:462.857829pt;}
.y1ce{bottom:463.113182pt;}
.y367{bottom:463.125982pt;}
.y2fb{bottom:463.767049pt;}
.y348{bottom:463.773449pt;}
.y37d{bottom:463.792649pt;}
.y1b3{bottom:464.792015pt;}
.y26d{bottom:467.897351pt;}
.y28d{bottom:467.916551pt;}
.y260{bottom:468.998683pt;}
.yf8{bottom:472.294520pt;}
.y201{bottom:473.483736pt;}
.y3d7{bottom:473.638021pt;}
.y73{bottom:473.762649pt;}
.y39c{bottom:475.767049pt;}
.y1b2{bottom:476.792015pt;}
.y2c6{bottom:477.125982pt;}
.y146{bottom:477.767049pt;}
.ya2{bottom:478.113863pt;}
.y11{bottom:478.426667pt;}
.y31a{bottom:478.452916pt;}
.y164{bottom:478.465716pt;}
.y30{bottom:478.857829pt;}
.y1cd{bottom:479.106782pt;}
.y366{bottom:479.119582pt;}
.y347{bottom:479.767049pt;}
.y2fa{bottom:479.786249pt;}
.y25f{bottom:480.998683pt;}
.y26c{bottom:483.890951pt;}
.y28c{bottom:483.910151pt;}
.yf7{bottom:484.294520pt;}
.y3d6{bottom:485.638021pt;}
.y6{bottom:487.748000pt;}
.y39b{bottom:487.767049pt;}
.y1b1{bottom:488.792015pt;}
.y200{bottom:489.477336pt;}
.y72{bottom:489.756249pt;}
.y25e{bottom:492.998683pt;}
.y2c5{bottom:493.119582pt;}
.y145{bottom:493.767049pt;}
.ya1{bottom:494.107463pt;}
.y319{bottom:494.446516pt;}
.y163{bottom:494.459316pt;}
.y2f{bottom:494.857829pt;}
.y1cc{bottom:495.100382pt;}
.y365{bottom:495.113182pt;}
.y346{bottom:495.767049pt;}
.y2f9{bottom:495.779849pt;}
.y3d5{bottom:497.638021pt;}
.y26b{bottom:499.890951pt;}
.y28b{bottom:499.903751pt;}
.yf6{bottom:500.422520pt;}
.y1b0{bottom:500.792015pt;}
.y1ff{bottom:505.477336pt;}
.y71{bottom:505.749849pt;}
.y2c4{bottom:509.113182pt;}
.y25d{bottom:509.201350pt;}
.y3d4{bottom:509.638021pt;}
.y144{bottom:509.792649pt;}
.ya0{bottom:510.107463pt;}
.y318{bottom:510.440116pt;}
.y162{bottom:510.452916pt;}
.y117{bottom:510.510557pt;}
.y2e{bottom:510.857829pt;}
.y131{bottom:511.100382pt;}
.y364{bottom:511.106782pt;}
.y1cb{bottom:511.138782pt;}
.y39a{bottom:511.767049pt;}
.y2f8{bottom:511.773449pt;}
.yf5{bottom:512.422520pt;}
.y1af{bottom:512.792015pt;}
.y26a{bottom:515.897351pt;}
.y3d3{bottom:521.638021pt;}
.y70{bottom:521.743449pt;}
.y18{bottom:524.093333pt;}
.y25c{bottom:525.329350pt;}
.y143{bottom:525.786249pt;}
.y317{bottom:526.433716pt;}
.y161{bottom:526.446516pt;}
.y116{bottom:526.504157pt;}
.y2d{bottom:526.857829pt;}
.y130{bottom:527.100382pt;}
.y1ca{bottom:527.132382pt;}
.y2f7{bottom:527.767049pt;}
.y399{bottom:527.792649pt;}
.yf4{bottom:528.550520pt;}
.y1ae{bottom:528.920015pt;}
.y269{bottom:531.890951pt;}
.y5{bottom:533.089333pt;}
.y3d2{bottom:533.638021pt;}
.y25b{bottom:537.329350pt;}
.y6f{bottom:537.747716pt;}
.y1ad{bottom:540.920015pt;}
.y142{bottom:541.779849pt;}
.y160{bottom:542.440116pt;}
.y316{bottom:542.446516pt;}
.y115{bottom:542.497757pt;}
.y2c{bottom:542.857829pt;}
.y363{bottom:543.100382pt;}
.y12f{bottom:543.106782pt;}
.y1c9{bottom:543.125982pt;}
.y37c{bottom:543.779849pt;}
.y398{bottom:543.786249pt;}
.y1fe{bottom:543.792649pt;}
.y345{bottom:543.805449pt;}
.y2f6{bottom:543.831090pt;}
.yf3{bottom:544.614520pt;}
.y3d1{bottom:545.638021pt;}
.y268{bottom:547.903751pt;}
.y28a{bottom:547.920929pt;}
.y25a{bottom:549.329350pt;}
.y1ac{bottom:552.920015pt;}
.y6e{bottom:553.743449pt;}
.y3d0{bottom:557.638021pt;}
.y141{bottom:557.773449pt;}
.y15f{bottom:558.433716pt;}
.y315{bottom:558.440116pt;}
.y114{bottom:558.491357pt;}
.y9f{bottom:558.786929pt;}
.y2b{bottom:558.857829pt;}
.y12e{bottom:559.100382pt;}
.y1c8{bottom:559.119582pt;}
.y37b{bottom:559.773449pt;}
.y397{bottom:559.779849pt;}
.y1fd{bottom:559.786249pt;}
.y344{bottom:559.799049pt;}
.y2f5{bottom:559.824690pt;}
.yf2{bottom:560.817187pt;}
.y259{bottom:561.329350pt;}
.ye{bottom:561.706667pt;}
.y267{bottom:563.897351pt;}
.y289{bottom:563.914529pt;}
.y1ab{bottom:564.920015pt;}
.y3cf{bottom:569.638021pt;}
.yf1{bottom:572.817187pt;}
.y258{bottom:573.329350pt;}
.y140{bottom:573.767049pt;}
.y314{bottom:574.433716pt;}
.y15e{bottom:574.440116pt;}
.y113{bottom:574.484957pt;}
.y9e{bottom:574.780529pt;}
.y2a{bottom:574.857829pt;}
.y362{bottom:575.106782pt;}
.y1c7{bottom:575.113182pt;}
.y12d{bottom:575.145223pt;}
.y37a{bottom:575.767049pt;}
.y396{bottom:575.773449pt;}
.y1fc{bottom:575.779849pt;}
.y343{bottom:575.792649pt;}
.y2f4{bottom:575.818290pt;}
.y266{bottom:579.890951pt;}
.y288{bottom:579.908129pt;}
.y3ce{bottom:581.638021pt;}
.yf0{bottom:584.817187pt;}
.y194{bottom:588.081350pt;}
.y1aa{bottom:588.824015pt;}
.y257{bottom:589.457350pt;}
.y2c3{bottom:589.767049pt;}
.y13f{bottom:589.818290pt;}
.y15d{bottom:590.433716pt;}
.y112{bottom:590.478557pt;}
.y6d{bottom:590.774129pt;}
.y29{bottom:590.857829pt;}
.y361{bottom:591.100382pt;}
.y1c6{bottom:591.106782pt;}
.y12c{bottom:591.138823pt;}
.y395{bottom:591.767049pt;}
.y1fb{bottom:591.773449pt;}
.y342{bottom:591.786249pt;}
.y2f3{bottom:591.811890pt;}
.y3cd{bottom:593.638021pt;}
.y265{bottom:595.890951pt;}
.y287{bottom:595.901729pt;}
.yef{bottom:600.945187pt;}
.y256{bottom:601.457350pt;}
.y193{bottom:604.284016pt;}
.y3cc{bottom:605.638021pt;}
.y13e{bottom:605.811890pt;}
.y15c{bottom:606.433716pt;}
.y111{bottom:606.472157pt;}
.y313{bottom:606.497757pt;}
.y9d{bottom:606.774129pt;}
.y6c{bottom:606.786929pt;}
.y28{bottom:606.857829pt;}
.y1c5{bottom:607.100382pt;}
.y12b{bottom:607.132423pt;}
.y1fa{bottom:607.767049pt;}
.y341{bottom:607.779849pt;}
.y2f2{bottom:607.805490pt;}
.y394{bottom:607.869490pt;}
.y1a9{bottom:610.435343pt;}
.y286{bottom:611.895329pt;}
.y264{bottom:611.897351pt;}
.yee{bottom:612.945187pt;}
.y255{bottom:613.457350pt;}
.y3cb{bottom:617.638021pt;}
.y192{bottom:620.412016pt;}
.y13d{bottom:621.805490pt;}
.y15b{bottom:622.433716pt;}
.y110{bottom:622.465757pt;}
.y312{bottom:622.491357pt;}
.y6b{bottom:622.780529pt;}
.y27{bottom:622.857829pt;}
.y360{bottom:623.119582pt;}
.y12a{bottom:623.126023pt;}
.y1c4{bottom:623.132423pt;}
.y1f9{bottom:623.773449pt;}
.y2f1{bottom:623.799090pt;}
.y393{bottom:623.863090pt;}
.y254{bottom:625.457350pt;}
.y285{bottom:627.888929pt;}
.y263{bottom:627.890951pt;}
.yed{bottom:629.073187pt;}
.y3ca{bottom:629.638021pt;}
.y191{bottom:636.540016pt;}
.y253{bottom:637.457350pt;}
.y15a{bottom:638.433716pt;}
.y10f{bottom:638.459357pt;}
.y2c2{bottom:638.472157pt;}
.y311{bottom:638.484957pt;}
.y6a{bottom:638.774129pt;}
.y26{bottom:638.857829pt;}
.y35f{bottom:639.113182pt;}
.y129{bottom:639.119623pt;}
.y1c3{bottom:639.126023pt;}
.y1f8{bottom:639.767049pt;}
.y2f0{bottom:639.792690pt;}
.y392{bottom:639.856690pt;}
.yec{bottom:641.073187pt;}
.y3c9{bottom:641.638021pt;}
.y252{bottom:649.457350pt;}
.y190{bottom:652.668016pt;}
.yeb{bottom:653.073187pt;}
.y3c8{bottom:653.638021pt;}
.y159{bottom:654.433716pt;}
.y13c{bottom:654.472157pt;}
.y310{bottom:654.478557pt;}
.y9c{bottom:654.780529pt;}
.y69{bottom:654.786970pt;}
.y25{bottom:654.857829pt;}
.y35e{bottom:655.106782pt;}
.y128{bottom:655.113223pt;}
.y1c2{bottom:655.119623pt;}
.y340{bottom:655.767049pt;}
.y2ef{bottom:655.786290pt;}
.y1f7{bottom:655.805490pt;}
.y391{bottom:655.850290pt;}
.y251{bottom:661.457350pt;}
.y1a8{bottom:662.578003pt;}
.yea{bottom:665.073187pt;}
.y3c7{bottom:665.638021pt;}
.y18f{bottom:668.796016pt;}
.y13b{bottom:670.465757pt;}
.y30f{bottom:670.472157pt;}
.y9b{bottom:670.774129pt;}
.y68{bottom:670.780570pt;}
.y24{bottom:670.857829pt;}
.y35d{bottom:671.100382pt;}
.y127{bottom:671.106823pt;}
.y1c1{bottom:671.113223pt;}
.y10e{bottom:671.126023pt;}
.y2c1{bottom:671.138823pt;}
.y2ee{bottom:671.779890pt;}
.y1f6{bottom:671.799090pt;}
.y390{bottom:671.843890pt;}
.y2b2{bottom:673.244016pt;}
.y250{bottom:673.457350pt;}
.ye9{bottom:677.073187pt;}
.y3c6{bottom:677.638021pt;}
.y18e{bottom:680.796016pt;}
.y13a{bottom:686.459357pt;}
.y158{bottom:686.465757pt;}
.y67{bottom:686.774170pt;}
.y23{bottom:686.857829pt;}
.y126{bottom:687.100423pt;}
.y1c0{bottom:687.106823pt;}
.y10d{bottom:687.119623pt;}
.y2c0{bottom:687.132423pt;}
.y35c{bottom:687.151623pt;}
.y2ed{bottom:687.773490pt;}
.y1f5{bottom:687.792690pt;}
.y38f{bottom:687.837490pt;}
.y2b1{bottom:689.446683pt;}
.y24f{bottom:689.585350pt;}
.y3c5{bottom:689.638021pt;}
.y4{bottom:691.756000pt;}
.ye8{bottom:693.211854pt;}
.y18d{bottom:696.934683pt;}
.y2b0{bottom:701.446683pt;}
.y24e{bottom:701.585350pt;}
.y3c4{bottom:701.638021pt;}
.y139{bottom:702.452957pt;}
.y157{bottom:702.459357pt;}
.y66{bottom:702.774170pt;}
.y9a{bottom:702.786970pt;}
.y22{bottom:702.857829pt;}
.y1bf{bottom:703.100423pt;}
.y10c{bottom:703.113223pt;}
.y2bf{bottom:703.126023pt;}
.y35b{bottom:703.145223pt;}
.y125{bottom:703.158023pt;}
.y2ec{bottom:703.767090pt;}
.y1f4{bottom:703.786290pt;}
.y38e{bottom:703.831090pt;}
.ye7{bottom:705.211854pt;}
.y18c{bottom:713.062683pt;}
.y24d{bottom:713.585350pt;}
.y3c3{bottom:713.638021pt;}
.y2af{bottom:717.585350pt;}
.y138{bottom:718.446557pt;}
.y156{bottom:718.452957pt;}
.y99{bottom:718.780570pt;}
.y65{bottom:718.806170pt;}
.y21{bottom:718.857829pt;}
.y10b{bottom:719.106823pt;}
.y2be{bottom:719.119623pt;}
.y35a{bottom:719.138823pt;}
.y124{bottom:719.151623pt;}
.y33f{bottom:719.773490pt;}
.y1f3{bottom:719.779890pt;}
.y2eb{bottom:719.799090pt;}
.y38d{bottom:719.824690pt;}
.y379{bottom:719.847844pt;}
.ye6{bottom:721.339854pt;}
.y12{bottom:725.040000pt;}
.y18b{bottom:725.062683pt;}
.y24c{bottom:725.585350pt;}
.y3c2{bottom:725.638021pt;}
.y2ae{bottom:729.585350pt;}
.ye5{bottom:733.339854pt;}
.y137{bottom:734.440157pt;}
.y155{bottom:734.446557pt;}
.y98{bottom:734.774170pt;}
.y64{bottom:734.799770pt;}
.y10a{bottom:735.100423pt;}
.y2bd{bottom:735.113223pt;}
.y359{bottom:735.132423pt;}
.y123{bottom:735.145223pt;}
.y33e{bottom:735.767090pt;}
.y1f2{bottom:735.773490pt;}
.y2ea{bottom:735.792690pt;}
.y38c{bottom:735.818290pt;}
.y378{bottom:735.841444pt;}
.y18a{bottom:737.062683pt;}
.y24b{bottom:737.585350pt;}
.y3c1{bottom:737.638021pt;}
.y20{bottom:738.857829pt;}
.y2ad{bottom:741.585350pt;}
.ye4{bottom:745.339854pt;}
.y189{bottom:749.062683pt;}
.y24a{bottom:749.585350pt;}
.y3c0{bottom:749.638021pt;}
.y136{bottom:750.433757pt;}
.y154{bottom:750.440157pt;}
.y63{bottom:750.793370pt;}
.y97{bottom:750.812570pt;}
.y2bc{bottom:751.106823pt;}
.y358{bottom:751.126023pt;}
.y122{bottom:751.138823pt;}
.y109{bottom:751.158023pt;}
.y1f1{bottom:751.767090pt;}
.y2e9{bottom:751.786290pt;}
.y33d{bottom:751.805490pt;}
.y38b{bottom:751.811890pt;}
.y377{bottom:751.835044pt;}
.y2ac{bottom:753.585350pt;}
.y188{bottom:761.062683pt;}
.ye3{bottom:761.467854pt;}
.y249{bottom:761.585350pt;}
.y3bf{bottom:761.638021pt;}
.y2ab{bottom:765.585350pt;}
.y153{bottom:766.433757pt;}
.y135{bottom:766.452957pt;}
.y62{bottom:766.786970pt;}
.y96{bottom:766.806170pt;}
.y2bb{bottom:767.100423pt;}
.y357{bottom:767.119623pt;}
.y121{bottom:767.132423pt;}
.y108{bottom:767.151623pt;}
.y1f0{bottom:767.773490pt;}
.y2e8{bottom:767.779890pt;}
.y33c{bottom:767.799090pt;}
.y38a{bottom:767.805490pt;}
.y376{bottom:767.828644pt;}
.y187{bottom:773.062683pt;}
.ye2{bottom:773.467854pt;}
.y248{bottom:773.585350pt;}
.y3be{bottom:773.638021pt;}
.y2aa{bottom:781.724016pt;}
.y152{bottom:782.433757pt;}
.y30e{bottom:782.465757pt;}
.y61{bottom:782.780570pt;}
.y95{bottom:782.799770pt;}
.y356{bottom:783.113223pt;}
.y120{bottom:783.126023pt;}
.y2ba{bottom:783.132423pt;}
.y107{bottom:783.145223pt;}
.y1ef{bottom:783.767090pt;}
.y2e7{bottom:783.773490pt;}
.y33b{bottom:783.792690pt;}
.y389{bottom:783.799090pt;}
.y375{bottom:783.822244pt;}
.y247{bottom:785.585350pt;}
.y3bd{bottom:785.638021pt;}
.y186{bottom:789.201350pt;}
.ye1{bottom:789.595854pt;}
.y2a9{bottom:793.724016pt;}
.y3bc{bottom:797.638021pt;}
.y30d{bottom:798.459357pt;}
.y60{bottom:798.774170pt;}
.y94{bottom:798.793370pt;}
.y355{bottom:799.106823pt;}
.y11f{bottom:799.119623pt;}
.y2b9{bottom:799.126023pt;}
.y106{bottom:799.138823pt;}
.y2e6{bottom:799.767090pt;}
.y33a{bottom:799.786290pt;}
.y388{bottom:799.792690pt;}
.y374{bottom:799.815844pt;}
.y1ee{bottom:799.818257pt;}
.y246{bottom:801.713350pt;}
.y1f{bottom:803.157878pt;}
.y3{bottom:805.081333pt;}
.y185{bottom:805.329350pt;}
.ye0{bottom:805.723854pt;}
.y2a8{bottom:805.724016pt;}
.y3bb{bottom:809.638021pt;}
.y245{bottom:813.713350pt;}
.y30c{bottom:814.452957pt;}
.y93{bottom:814.786970pt;}
.y5f{bottom:814.793370pt;}
.y151{bottom:815.100423pt;}
.y11e{bottom:815.113223pt;}
.y2b8{bottom:815.119623pt;}
.y105{bottom:815.132423pt;}
.y339{bottom:815.779890pt;}
.y387{bottom:815.786290pt;}
.y2e5{bottom:815.805490pt;}
.y373{bottom:815.809444pt;}
.y1ed{bottom:815.811857pt;}
.ydf{bottom:817.723854pt;}
.y184{bottom:821.457350pt;}
.y3ba{bottom:821.638021pt;}
.y2a7{bottom:821.862683pt;}
.yde{bottom:829.723854pt;}
.y244{bottom:829.841350pt;}
.y92{bottom:830.780570pt;}
.y5e{bottom:830.786970pt;}
.y354{bottom:831.100423pt;}
.y11d{bottom:831.106823pt;}
.y2b7{bottom:831.113223pt;}
.y104{bottom:831.126023pt;}
.y150{bottom:831.135873pt;}
.y338{bottom:831.773490pt;}
.y386{bottom:831.779890pt;}
.y2e4{bottom:831.799090pt;}
.y372{bottom:831.803044pt;}
.y1ec{bottom:831.805457pt;}
.y3b9{bottom:833.638021pt;}
.y2a6{bottom:833.862683pt;}
.y1e{bottom:835.169358pt;}
.y183{bottom:837.596016pt;}
.ydd{bottom:841.723854pt;}
.y243{bottom:841.841350pt;}
.y3b8{bottom:845.638021pt;}
.y2a5{bottom:845.862683pt;}
.y91{bottom:846.774170pt;}
.y5d{bottom:846.780570pt;}
.y11c{bottom:847.100423pt;}
.y2b6{bottom:847.106823pt;}
.y103{bottom:847.119623pt;}
.y14f{bottom:847.129473pt;}
.y337{bottom:847.767090pt;}
.y385{bottom:847.773490pt;}
.y2e3{bottom:847.792690pt;}
.y371{bottom:847.796644pt;}
.y1eb{bottom:847.799057pt;}
.ydc{bottom:853.723854pt;}
.y182{bottom:853.724016pt;}
.y242{bottom:853.841350pt;}
.y2{bottom:857.092000pt;}
.y3b7{bottom:857.638021pt;}
.y2a4{bottom:857.862683pt;}
.y5c{bottom:862.774170pt;}
.y90{bottom:862.793370pt;}
.y2b5{bottom:863.100423pt;}
.y102{bottom:863.113223pt;}
.y14e{bottom:863.123073pt;}
.y11b{bottom:863.192946pt;}
.y384{bottom:863.767090pt;}
.y2e2{bottom:863.786290pt;}
.y370{bottom:863.790244pt;}
.y1ea{bottom:863.792657pt;}
.y336{bottom:863.798786pt;}
.y181{bottom:865.724016pt;}
.y241{bottom:865.841350pt;}
.y3b6{bottom:869.638021pt;}
.y1d{bottom:869.825358pt;}
.ydb{bottom:869.862520pt;}
.y2a3{bottom:869.862683pt;}
.y5b{bottom:878.774170pt;}
.y8f{bottom:878.786970pt;}
.y2b4{bottom:879.100423pt;}
.y134{bottom:879.106823pt;}
.y14d{bottom:879.116673pt;}
.y11a{bottom:879.186546pt;}
.y1{bottom:879.748000pt;}
.y2e1{bottom:879.779890pt;}
.y36f{bottom:879.783844pt;}
.y1e9{bottom:879.786257pt;}
.y383{bottom:879.786290pt;}
.y335{bottom:879.792386pt;}
.y3b5{bottom:881.638021pt;}
.yda{bottom:881.862520pt;}
.y180{bottom:881.862683pt;}
.y240{bottom:881.969350pt;}
.y3b4{bottom:893.638021pt;}
.y8e{bottom:894.780570pt;}
.y5a{bottom:894.786970pt;}
.y2e0{bottom:895.773490pt;}
.y36e{bottom:895.777444pt;}
.y1e8{bottom:895.779857pt;}
.y101{bottom:895.779890pt;}
.y334{bottom:895.785986pt;}
.y3b3{bottom:905.638021pt;}
.yd9{bottom:905.766520pt;}
.y17f{bottom:905.766683pt;}
.y8d{bottom:910.774170pt;}
.y59{bottom:910.780570pt;}
.y2b3{bottom:911.767090pt;}
.y36d{bottom:911.771044pt;}
.y1e7{bottom:911.773457pt;}
.y100{bottom:911.773490pt;}
.y333{bottom:911.779586pt;}
.y14c{bottom:911.783339pt;}
.y119{bottom:911.853212pt;}
.y3b2{bottom:917.638021pt;}
.y1c{bottom:918.544515pt;}
.y4e{bottom:920.666829pt;}
.y58{bottom:926.774170pt;}
.y8c{bottom:926.851185pt;}
.yd8{bottom:927.377848pt;}
.y36c{bottom:927.764644pt;}
.y1e6{bottom:927.767057pt;}
.yff{bottom:927.767090pt;}
.y332{bottom:927.773186pt;}
.y14b{bottom:927.776939pt;}
.y2df{bottom:927.798515pt;}
.y118{bottom:927.846812pt;}
.y3b1{bottom:929.638021pt;}
.y4f{bottom:972.385335pt;}
.y1b{bottom:975.375182pt;}
.y1a{bottom:988.708515pt;}
.ybb{bottom:1001.355225pt;}
.y56{bottom:1001.355306pt;}
.ybd{bottom:1001.561768pt;}
.y19{bottom:1001.711182pt;}
.ybc{bottom:1002.044515pt;}
.y57{bottom:1002.048639pt;}
.h1a{height:24.724000pt;}
.h4{height:29.333333pt;}
.h15{height:32.965333pt;}
.h19{height:35.320000pt;}
.h22{height:36.821333pt;}
.h14{height:36.922667pt;}
.h1f{height:37.674667pt;}
.h20{height:37.930667pt;}
.h26{height:38.080000pt;}
.h25{height:38.920000pt;}
.h17{height:39.026667pt;}
.hd{height:40.618667pt;}
.hc{height:40.661333pt;}
.h1e{height:41.514667pt;}
.hb{height:41.984000pt;}
.h21{height:42.197333pt;}
.h12{height:47.093333pt;}
.h1d{height:47.472000pt;}
.h24{height:47.692799pt;}
.h1b{height:47.741866pt;}
.h1c{height:48.555733pt;}
.h16{height:49.653333pt;}
.h18{height:50.713992pt;}
.h13{height:51.893333pt;}
.h3{height:51.916667pt;}
.h11{height:54.329067pt;}
.h2{height:59.333333pt;}
.h10{height:59.728337pt;}
.h5{height:60.213542pt;}
.he{height:68.570667pt;}
.h23{height:85.674667pt;}
.h7{height:102.413333pt;}
.hf{height:121.856000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:153.852000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x12{left:19.581991pt;}
.xa{left:75.496002pt;}
.xb{left:82.430532pt;}
.xc{left:84.162800pt;}
.x14{left:86.252935pt;}
.x17{left:88.918535pt;}
.x23{left:95.590535pt;}
.x16{left:102.250802pt;}
.x18{left:110.256402pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x15{left:190.257202pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xd{left:240.726664pt;}
.x1d{left:245.318532pt;}
.x1e{left:312.497192pt;}
.x1c{left:332.902527pt;}
.x20{left:396.923869pt;}
.xf{left:406.304795pt;}
.xe{left:416.967195pt;}
.x19{left:419.622795pt;}
.x22{left:426.299194pt;}
.x1b{left:432.950802pt;}
.x1a{left:440.960661pt;}
.x21{left:524.731852pt;}
.x11{left:565.704020pt;}
.x10{left:617.715454pt;}
.x1f{left:658.727458pt;}
.x13{left:664.199341pt;}
}




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