
    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_64381a31e888274151cb8d10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b811389da6b7106bcab62c9c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9fef31868252ce94a0c954e1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5773fd6bc6a73a1bbbb7672.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba044df9b8eb37e427bc0051.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_472f791ae1a07c03b2719830.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_85de2226cdb85aa13a2a11e0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_59c852d993c0c973af5757be.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a9a85424845082ea49681180.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_eeca4f5106b4a08247a176e6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8a35b3610b269ef9a1ac3d4a.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f1e8582590af353b6ba3e198.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.629000;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_0b0341cde01d8d9e6a3d5a7c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8bb177ad9b2b92c2eb2e25a7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.588000;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;}
.v2{vertical-align:26.399780px;}
.ls9{letter-spacing:-1.528800px;}
.ls6{letter-spacing:-1.050000px;}
.ls5{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls2{letter-spacing:0.000085px;}
.ls11{letter-spacing:0.135000px;}
.ls7{letter-spacing:0.294000px;}
.lsc{letter-spacing:0.629993px;}
.lsa{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.634486px;}
.lse{letter-spacing:0.634493px;}
.lsd{letter-spacing:0.634495px;}
.lsb{letter-spacing:0.634500px;}
.lsf{letter-spacing:0.638983px;}
.ls8{letter-spacing:0.823200px;}
.ls3{letter-spacing:1.005472px;}
.ls1{letter-spacing:5.460000px;}
.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;}
}
.ws11a{word-spacing:-14.641200px;}
.ws28{word-spacing:-14.112000px;}
.ws27{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-11.880000px;}
.ws154{word-spacing:-11.426400px;}
.ws15e{word-spacing:-10.485000px;}
.ws1{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws15c{word-spacing:-9.990000px;}
.ws6{word-spacing:-9.855000px;}
.ws153{word-spacing:-9.315000px;}
.ws15b{word-spacing:-8.730000px;}
.ws5{word-spacing:-8.148000px;}
.ws155{word-spacing:-8.100000px;}
.ws159{word-spacing:-1.890000px;}
.ws132{word-spacing:-1.646400px;}
.ws152{word-spacing:-1.587600px;}
.ws78{word-spacing:-1.234800px;}
.ws127{word-spacing:-1.058400px;}
.ws121{word-spacing:-0.823200px;}
.ws7{word-spacing:-0.780000px;}
.ws139{word-spacing:-0.764400px;}
.ws75{word-spacing:-0.705600px;}
.ws72{word-spacing:-0.646800px;}
.ws15d{word-spacing:-0.630000px;}
.wse2{word-spacing:-0.588000px;}
.wsb{word-spacing:-0.529200px;}
.ws10f{word-spacing:-0.470400px;}
.wsc9{word-spacing:-0.411600px;}
.wsd1{word-spacing:-0.352800px;}
.wsd2{word-spacing:-0.294000px;}
.ws41{word-spacing:-0.235200px;}
.wscb{word-spacing:-0.176400px;}
.ws160{word-spacing:-0.135000px;}
.wsd0{word-spacing:-0.117600px;}
.ws15f{word-spacing:-0.090000px;}
.ws137{word-spacing:-0.058800px;}
.ws15a{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
.ws14f{word-spacing:0.058800px;}
.ws4a{word-spacing:0.117600px;}
.ws7a{word-spacing:0.176400px;}
.wsaa{word-spacing:0.235200px;}
.wsa2{word-spacing:0.294000px;}
.wsa6{word-spacing:0.352800px;}
.ws108{word-spacing:0.411600px;}
.ws87{word-spacing:0.470400px;}
.wsc{word-spacing:0.529200px;}
.wsa1{word-spacing:0.588000px;}
.wsb9{word-spacing:0.646800px;}
.wsdc{word-spacing:0.705600px;}
.ws5c{word-spacing:0.764400px;}
.ws12a{word-spacing:0.823200px;}
.wse{word-spacing:0.882000px;}
.ws10b{word-spacing:0.999600px;}
.ws118{word-spacing:1.058400px;}
.wsf9{word-spacing:1.117200px;}
.wsd3{word-spacing:1.176000px;}
.wse4{word-spacing:1.234800px;}
.ws25{word-spacing:1.293600px;}
.ws65{word-spacing:1.352400px;}
.ws140{word-spacing:1.411200px;}
.wsbe{word-spacing:1.470000px;}
.ws9d{word-spacing:1.528800px;}
.ws9{word-spacing:1.587600px;}
.ws9f{word-spacing:1.646400px;}
.ws39{word-spacing:1.705200px;}
.ws6c{word-spacing:1.764000px;}
.ws22{word-spacing:1.822800px;}
.wse3{word-spacing:1.881600px;}
.ws79{word-spacing:1.940400px;}
.ws111{word-spacing:2.058000px;}
.wsa0{word-spacing:2.116800px;}
.ws122{word-spacing:2.175600px;}
.wsab{word-spacing:2.234400px;}
.ws9c{word-spacing:2.293200px;}
.ws131{word-spacing:2.352000px;}
.wsdf{word-spacing:2.410800px;}
.ws1e{word-spacing:2.469600px;}
.wsbc{word-spacing:2.587200px;}
.ws5e{word-spacing:2.646000px;}
.ws76{word-spacing:2.704800px;}
.ws128{word-spacing:2.763600px;}
.ws144{word-spacing:2.822400px;}
.ws134{word-spacing:2.881200px;}
.ws2b{word-spacing:2.940000px;}
.ws8c{word-spacing:2.998800px;}
.wsde{word-spacing:3.057600px;}
.ws2d{word-spacing:3.116400px;}
.wsb7{word-spacing:3.175200px;}
.wsf{word-spacing:3.234000px;}
.ws46{word-spacing:3.292800px;}
.ws73{word-spacing:3.351600px;}
.wsa4{word-spacing:3.410400px;}
.ws61{word-spacing:3.469200px;}
.ws133{word-spacing:3.528000px;}
.wsd5{word-spacing:3.586800px;}
.ws47{word-spacing:3.645600px;}
.ws8d{word-spacing:3.704400px;}
.wse1{word-spacing:3.763200px;}
.ws148{word-spacing:3.822000px;}
.ws8e{word-spacing:3.880800px;}
.wsc6{word-spacing:3.939600px;}
.ws145{word-spacing:3.998400px;}
.ws69{word-spacing:4.057200px;}
.ws107{word-spacing:4.174800px;}
.wsb8{word-spacing:4.233600px;}
.wsa9{word-spacing:4.292400px;}
.ws149{word-spacing:4.351200px;}
.ws77{word-spacing:4.410000px;}
.ws14c{word-spacing:4.468800px;}
.ws84{word-spacing:4.527600px;}
.ws34{word-spacing:4.586400px;}
.wsaf{word-spacing:4.645200px;}
.ws26{word-spacing:4.704000px;}
.ws5b{word-spacing:4.762800px;}
.ws7f{word-spacing:4.821600px;}
.ws53{word-spacing:4.880400px;}
.ws7e{word-spacing:4.939200px;}
.ws57{word-spacing:4.998000px;}
.ws92{word-spacing:5.115600px;}
.ws1a{word-spacing:5.174400px;}
.ws36{word-spacing:5.233200px;}
.ws99{word-spacing:5.292000px;}
.ws7d{word-spacing:5.350800px;}
.ws4f{word-spacing:5.409600px;}
.wsa8{word-spacing:5.468400px;}
.ws58{word-spacing:5.527200px;}
.ws35{word-spacing:5.586000px;}
.wscc{word-spacing:5.644800px;}
.ws21{word-spacing:5.703600px;}
.ws10e{word-spacing:5.762400px;}
.wsf6{word-spacing:5.821200px;}
.ws89{word-spacing:5.880000px;}
.wsec{word-spacing:5.938800px;}
.ws42{word-spacing:5.997600px;}
.ws88{word-spacing:6.056400px;}
.ws100{word-spacing:6.115200px;}
.ws11c{word-spacing:6.174000px;}
.ws3e{word-spacing:6.232800px;}
.ws2a{word-spacing:6.291600px;}
.ws37{word-spacing:6.350400px;}
.wsc1{word-spacing:6.409200px;}
.wseb{word-spacing:6.468000px;}
.ws67{word-spacing:6.526800px;}
.ws8b{word-spacing:6.585600px;}
.wsb4{word-spacing:6.644400px;}
.ws70{word-spacing:6.703200px;}
.wsb5{word-spacing:6.762000px;}
.ws13{word-spacing:6.820800px;}
.ws3a{word-spacing:6.879600px;}
.ws138{word-spacing:6.938400px;}
.ws64{word-spacing:6.997200px;}
.wsa7{word-spacing:7.056000px;}
.ws14a{word-spacing:7.114800px;}
.ws101{word-spacing:7.173600px;}
.ws1f{word-spacing:7.232400px;}
.wsf7{word-spacing:7.291200px;}
.ws20{word-spacing:7.350000px;}
.wsca{word-spacing:7.408800px;}
.ws151{word-spacing:7.467600px;}
.wsc5{word-spacing:7.526400px;}
.ws3f{word-spacing:7.585200px;}
.wsb1{word-spacing:7.644000px;}
.ws5d{word-spacing:7.702800px;}
.ws8f{word-spacing:7.761600px;}
.ws93{word-spacing:7.820400px;}
.ws9e{word-spacing:7.879200px;}
.ws33{word-spacing:7.938000px;}
.ws40{word-spacing:7.996800px;}
.ws141{word-spacing:8.055600px;}
.ws13e{word-spacing:8.114400px;}
.ws38{word-spacing:8.173200px;}
.ws8a{word-spacing:8.290800px;}
.ws30{word-spacing:8.349600px;}
.wsa3{word-spacing:8.408400px;}
.wsfb{word-spacing:8.467200px;}
.ws71{word-spacing:8.526000px;}
.ws68{word-spacing:8.584800px;}
.wsc7{word-spacing:8.643600px;}
.ws16{word-spacing:8.702400px;}
.ws10c{word-spacing:8.761200px;}
.ws10{word-spacing:8.820000px;}
.ws8{word-spacing:8.878800px;}
.ws7c{word-spacing:8.937600px;}
.ws12c{word-spacing:9.055200px;}
.ws1d{word-spacing:9.114000px;}
.ws60{word-spacing:9.231600px;}
.ws55{word-spacing:9.290400px;}
.ws83{word-spacing:9.349200px;}
.ws135{word-spacing:9.408000px;}
.ws50{word-spacing:9.466800px;}
.ws15{word-spacing:9.525600px;}
.wsba{word-spacing:9.584400px;}
.ws6a{word-spacing:9.643200px;}
.ws4d{word-spacing:9.702000px;}
.ws98{word-spacing:9.760800px;}
.ws14b{word-spacing:9.819600px;}
.ws24{word-spacing:9.878400px;}
.wsf2{word-spacing:9.937200px;}
.ws12d{word-spacing:9.996000px;}
.ws6e{word-spacing:10.054800px;}
.ws94{word-spacing:10.113600px;}
.ws3d{word-spacing:10.172400px;}
.wsb6{word-spacing:10.231200px;}
.ws104{word-spacing:10.290000px;}
.ws12e{word-spacing:10.348800px;}
.ws29{word-spacing:10.407600px;}
.ws18{word-spacing:10.466400px;}
.ws45{word-spacing:10.525200px;}
.ws59{word-spacing:10.584000px;}
.ws13b{word-spacing:10.642800px;}
.wsc8{word-spacing:10.701600px;}
.wsbb{word-spacing:10.760400px;}
.wscf{word-spacing:10.819200px;}
.ws62{word-spacing:10.936800px;}
.ws119{word-spacing:10.995600px;}
.ws17{word-spacing:11.113200px;}
.wsee{word-spacing:11.172000px;}
.wsef{word-spacing:11.230800px;}
.wsdb{word-spacing:11.289600px;}
.wsbf{word-spacing:11.348400px;}
.ws81{word-spacing:11.407200px;}
.ws14{word-spacing:11.466000px;}
.ws9b{word-spacing:11.524800px;}
.wse5{word-spacing:11.583600px;}
.ws110{word-spacing:11.642400px;}
.ws142{word-spacing:11.701200px;}
.ws2f{word-spacing:11.760000px;}
.ws44{word-spacing:11.818800px;}
.wse8{word-spacing:11.877600px;}
.ws9a{word-spacing:11.936400px;}
.ws3c{word-spacing:11.995200px;}
.ws130{word-spacing:12.054000px;}
.wsda{word-spacing:12.112800px;}
.ws80{word-spacing:12.171600px;}
.wsd9{word-spacing:12.230400px;}
.ws13d{word-spacing:12.289200px;}
.ws11b{word-spacing:12.348000px;}
.ws105{word-spacing:12.406800px;}
.ws11d{word-spacing:12.524400px;}
.wsfc{word-spacing:12.583200px;}
.wsd4{word-spacing:12.642000px;}
.ws2e{word-spacing:12.700800px;}
.ws3b{word-spacing:12.759600px;}
.ws6f{word-spacing:12.877200px;}
.wsf8{word-spacing:12.936000px;}
.wsf3{word-spacing:12.994800px;}
.wsd8{word-spacing:13.053600px;}
.wse7{word-spacing:13.112400px;}
.ws150{word-spacing:13.171200px;}
.wsf5{word-spacing:13.230000px;}
.wsa{word-spacing:13.288800px;}
.wsd7{word-spacing:13.347600px;}
.ws12f{word-spacing:13.406400px;}
.wse6{word-spacing:13.524000px;}
.ws86{word-spacing:13.582800px;}
.ws13c{word-spacing:13.641600px;}
.ws5a{word-spacing:13.700400px;}
.ws136{word-spacing:13.759200px;}
.ws4b{word-spacing:13.818000px;}
.ws117{word-spacing:13.935600px;}
.ws56{word-spacing:13.994400px;}
.ws1b{word-spacing:14.053200px;}
.wsc4{word-spacing:14.112000px;}
.wsd6{word-spacing:14.170800px;}
.wsa5{word-spacing:14.347200px;}
.ws2c{word-spacing:14.406000px;}
.ws112{word-spacing:14.464800px;}
.wsad{word-spacing:14.523600px;}
.ws90{word-spacing:14.582400px;}
.ws4e{word-spacing:14.641200px;}
.ws82{word-spacing:14.700000px;}
.ws1c{word-spacing:14.758800px;}
.ws91{word-spacing:14.876400px;}
.ws12{word-spacing:14.935200px;}
.wsff{word-spacing:14.994000px;}
.wsfd{word-spacing:15.052800px;}
.ws106{word-spacing:15.111600px;}
.ws126{word-spacing:15.170400px;}
.ws4c{word-spacing:15.288000px;}
.ws146{word-spacing:15.464400px;}
.ws32{word-spacing:15.523200px;}
.ws143{word-spacing:15.699600px;}
.wsce{word-spacing:15.817200px;}
.ws14e{word-spacing:15.993600px;}
.ws54{word-spacing:16.170000px;}
.wsb2{word-spacing:16.287600px;}
.wsb0{word-spacing:16.405200px;}
.wsc0{word-spacing:16.464000px;}
.wscd{word-spacing:16.522800px;}
.ws95{word-spacing:16.581600px;}
.ws13f{word-spacing:16.699200px;}
.wsd{word-spacing:16.758000px;}
.ws11{word-spacing:16.993200px;}
.wsbd{word-spacing:17.052000px;}
.wsf1{word-spacing:17.169600px;}
.ws12b{word-spacing:17.346000px;}
.ws52{word-spacing:17.404800px;}
.ws23{word-spacing:17.463600px;}
.ws156{word-spacing:17.522400px;}
.wsfe{word-spacing:17.581200px;}
.ws14d{word-spacing:17.640000px;}
.ws125{word-spacing:17.698800px;}
.ws96{word-spacing:17.757600px;}
.wsae{word-spacing:17.992800px;}
.ws43{word-spacing:18.404400px;}
.ws129{word-spacing:18.580800px;}
.wsc2{word-spacing:18.639600px;}
.ws102{word-spacing:18.698400px;}
.wsfa{word-spacing:18.757200px;}
.wse0{word-spacing:19.051200px;}
.ws7b{word-spacing:19.168800px;}
.ws66{word-spacing:19.286400px;}
.ws11f{word-spacing:19.345200px;}
.ws124{word-spacing:19.580400px;}
.ws109{word-spacing:19.815600px;}
.wsc3{word-spacing:19.933200px;}
.ws85{word-spacing:20.050800px;}
.ws116{word-spacing:20.109600px;}
.ws157{word-spacing:20.344800px;}
.ws49{word-spacing:20.403600px;}
.ws6b{word-spacing:20.462400px;}
.wse9{word-spacing:20.638800px;}
.wsf4{word-spacing:21.109200px;}
.ws10d{word-spacing:21.344400px;}
.ws19{word-spacing:21.462000px;}
.ws113{word-spacing:21.579600px;}
.ws115{word-spacing:21.756000px;}
.ws97{word-spacing:21.873600px;}
.ws11e{word-spacing:21.991200px;}
.ws5f{word-spacing:22.932000px;}
.ws13a{word-spacing:22.990800px;}
.ws147{word-spacing:23.343600px;}
.wsdd{word-spacing:23.755200px;}
.ws6d{word-spacing:23.931600px;}
.wsb3{word-spacing:23.990400px;}
.ws51{word-spacing:24.108000px;}
.wsf0{word-spacing:24.402000px;}
.wsac{word-spacing:24.813600px;}
.ws123{word-spacing:24.872400px;}
.ws103{word-spacing:25.284000px;}
.ws158{word-spacing:25.342800px;}
.ws74{word-spacing:25.519200px;}
.ws48{word-spacing:26.048400px;}
.wsea{word-spacing:26.224800px;}
.ws10a{word-spacing:26.577600px;}
.ws31{word-spacing:27.048000px;}
.wsed{word-spacing:27.165600px;}
.ws120{word-spacing:30.105600px;}
.ws114{word-spacing:30.928800px;}
.ws63{word-spacing:40.219200px;}
._3{margin-left:-11.682000px;}
._16{margin-left:-9.855000px;}
._d{margin-left:-8.475960px;}
._12{margin-left:-6.879600px;}
._8{margin-left:-5.280960px;}
._4{margin-left:-3.908400px;}
._5{margin-left:-2.834400px;}
._0{margin-left:-1.449600px;}
._1{width:1.094400px;}
._6{width:2.214000px;}
._b{width:3.609600px;}
._a{width:5.474280px;}
._c{width:6.858480px;}
._11{width:9.114000px;}
._13{width:10.484040px;}
._9{width:11.841600px;}
._10{width:13.788600px;}
._7{width:16.816800px;}
._e{width:18.721189px;}
._f{width:24.665880px;}
._2{width:38.492975px;}
._18{width:53.145000px;}
._17{width:57.181200px;}
._1a{width:96.975000px;}
._1c{width:103.500000px;}
._15{width:105.210000px;}
._19{width:113.895000px;}
._1b{width:125.190000px;}
._14{width:133.245000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.500000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs9{font-size:46.199999px;}
.fs5{font-size:48.000000px;}
.fsf{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.580000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.796807px;}
.y61{bottom:26.170807px;}
.y5{bottom:66.525004px;}
.y5f{bottom:75.796800px;}
.y5e{bottom:87.798300px;}
.y4{bottom:97.125005px;}
.y5d{bottom:99.799800px;}
.y2dc{bottom:100.662003px;}
.y3a0{bottom:100.842756px;}
.y11b{bottom:106.635295px;}
.yfe{bottom:106.642495px;}
.y194{bottom:107.737953px;}
.y14d{bottom:107.745153px;}
.y1d2{bottom:107.752353px;}
.y29a{bottom:107.759553px;}
.y2b1{bottom:107.853130px;}
.y26a{bottom:108.821995px;}
.y215{bottom:111.656245px;}
.y5c{bottom:111.801300px;}
.y314{bottom:112.092728px;}
.y232{bottom:112.399045px;}
.y2db{bottom:114.162003px;}
.y39f{bottom:114.342756px;}
.y5b{bottom:123.802800px;}
.y269{bottom:123.821995px;}
.y11a{bottom:124.628095px;}
.yfd{bottom:124.635295px;}
.yd0{bottom:124.664095px;}
.y9f{bottom:124.685695px;}
.y313{bottom:125.592728px;}
.y14c{bottom:125.737953px;}
.y1d1{bottom:125.745153px;}
.y193{bottom:125.752353px;}
.y286{bottom:125.766753px;}
.y1bc{bottom:125.773953px;}
.y2b0{bottom:125.845930px;}
.y2da{bottom:127.662003px;}
.y39e{bottom:127.842756px;}
.y359{bottom:127.842773px;}
.y214{bottom:129.649045px;}
.y231{bottom:130.391845px;}
.y5a{bottom:135.804300px;}
.y268{bottom:138.821995px;}
.y312{bottom:139.092728px;}
.y22{bottom:139.264499px;}
.y2d9{bottom:141.162003px;}
.y39d{bottom:141.342756px;}
.y358{bottom:141.342773px;}
.y119{bottom:142.620895px;}
.yfc{bottom:142.628095px;}
.ycf{bottom:142.656895px;}
.y9e{bottom:142.678495px;}
.y14b{bottom:143.737953px;}
.y192{bottom:143.745153px;}
.y285{bottom:143.759553px;}
.y1bb{bottom:143.766753px;}
.y179{bottom:143.795553px;}
.y2af{bottom:143.838730px;}
.y213{bottom:147.641845px;}
.y59{bottom:147.805800px;}
.y230{bottom:148.384645px;}
.y311{bottom:152.592728px;}
.y267{bottom:153.821995px;}
.y2d8{bottom:154.662003px;}
.y39c{bottom:154.842756px;}
.y357{bottom:154.842773px;}
.yfb{bottom:160.620895px;}
.y118{bottom:160.642495px;}
.yce{bottom:160.649695px;}
.y9d{bottom:160.671295px;}
.y191{bottom:161.737953px;}
.y1f5{bottom:161.752353px;}
.y1ba{bottom:161.759553px;}
.y14a{bottom:161.781153px;}
.y178{bottom:161.788353px;}
.y2ae{bottom:161.831530px;}
.y212{bottom:165.634645px;}
.y310{bottom:166.092728px;}
.y22f{bottom:166.377445px;}
.y2d7{bottom:168.162003px;}
.y39b{bottom:168.342756px;}
.y356{bottom:168.342773px;}
.yfa{bottom:178.628095px;}
.y117{bottom:178.635295px;}
.ycd{bottom:178.642495px;}
.y9c{bottom:178.664095px;}
.y30f{bottom:179.592728px;}
.y190{bottom:179.737953px;}
.y1f4{bottom:179.745153px;}
.y1b9{bottom:179.752353px;}
.y299{bottom:179.759553px;}
.y149{bottom:179.773953px;}
.y177{bottom:179.781153px;}
.y2ad{bottom:179.824330px;}
.y2d6{bottom:181.662003px;}
.y39a{bottom:181.842756px;}
.y355{bottom:181.842773px;}
.y211{bottom:183.627445px;}
.y22e{bottom:184.478119px;}
.y30e{bottom:193.092728px;}
.y2d5{bottom:195.162003px;}
.y399{bottom:195.342756px;}
.y354{bottom:195.342773px;}
.y57{bottom:195.660896px;}
.yf9{bottom:196.620895px;}
.y116{bottom:196.628095px;}
.ycc{bottom:196.635295px;}
.y9b{bottom:196.656895px;}
.y19{bottom:196.933500px;}
.y1f3{bottom:197.737953px;}
.y1b8{bottom:197.745153px;}
.y298{bottom:197.752353px;}
.y148{bottom:197.766753px;}
.y176{bottom:197.773953px;}
.y2ac{bottom:197.817130px;}
.y69{bottom:199.902603px;}
.y210{bottom:201.627457px;}
.y22d{bottom:202.470919px;}
.y30d{bottom:206.592728px;}
.y398{bottom:208.842756px;}
.y353{bottom:208.842773px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y56{bottom:213.668096px;}
.y115{bottom:214.620895px;}
.ycb{bottom:214.628095px;}
.yf8{bottom:214.635295px;}
.y9a{bottom:214.649695px;}
.y1b7{bottom:215.737953px;}
.y1f2{bottom:215.745153px;}
.y147{bottom:215.759553px;}
.y175{bottom:215.766753px;}
.y2ab{bottom:215.809930px;}
.y68{bottom:217.902603px;}
.y20f{bottom:219.649057px;}
.y30c{bottom:220.092728px;}
.y22c{bottom:220.463719px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y397{bottom:222.342756px;}
.y352{bottom:222.342773px;}
.y67{bottom:226.902603px;}
.y55{bottom:231.660896px;}
.yca{bottom:232.620895px;}
.yf7{bottom:232.628095px;}
.y99{bottom:232.642495px;}
.y30b{bottom:233.592728px;}
.y1b6{bottom:233.737953px;}
.y146{bottom:233.752353px;}
.y174{bottom:233.759553px;}
.y1d0{bottom:233.773953px;}
.y2aa{bottom:233.802730px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y396{bottom:235.842756px;}
.y351{bottom:235.842773px;}
.y20e{bottom:237.641857px;}
.y22b{bottom:238.456519px;}
.y2d4{bottom:240.198003px;}
.y66{bottom:244.902603px;}
.y30a{bottom:247.092728px;}
.y395{bottom:249.342756px;}
.y350{bottom:249.342773px;}
.y54{bottom:249.668096px;}
.yf6{bottom:250.620895px;}
.y98{bottom:250.635295px;}
.yc9{bottom:250.649695px;}
.y284{bottom:251.737953px;}
.y145{bottom:251.745153px;}
.y173{bottom:251.752353px;}
.y1cf{bottom:251.766753px;}
.y1f1{bottom:251.773953px;}
.y2a9{bottom:251.795530px;}
.y1b5{bottom:251.838730px;}
.y65{bottom:253.902603px;}
.y20d{bottom:255.634657px;}
.y22a{bottom:256.449319px;}
.y2d3{bottom:258.190803px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y309{bottom:260.592728px;}
.y394{bottom:262.842756px;}
.y34f{bottom:262.842773px;}
.y64{bottom:267.402603px;}
.y53{bottom:267.660896px;}
.y97{bottom:268.628095px;}
.yc8{bottom:268.642495px;}
.y144{bottom:269.737953px;}
.y172{bottom:269.745153px;}
.y1ce{bottom:269.759553px;}
.y1f0{bottom:269.766753px;}
.y2a8{bottom:269.788330px;}
.y1b4{bottom:269.831530px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y20c{bottom:273.627457px;}
.y308{bottom:274.092728px;}
.y229{bottom:274.442119px;}
.y2d2{bottom:276.183603px;}
.y393{bottom:276.342756px;}
.y34e{bottom:276.342773px;}
.y63{bottom:280.902603px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y52{bottom:285.660896px;}
.y96{bottom:286.620895px;}
.yc7{bottom:286.635295px;}
.y307{bottom:287.592728px;}
.y171{bottom:287.737953px;}
.y1cd{bottom:287.752353px;}
.y1ef{bottom:287.759553px;}
.y143{bottom:287.766753px;}
.y2a7{bottom:287.781130px;}
.y1b3{bottom:287.824330px;}
.y392{bottom:289.842756px;}
.y34d{bottom:289.842773px;}
.y20b{bottom:291.627296px;}
.y228{bottom:292.434919px;}
.y2d1{bottom:294.176403px;}
.y306{bottom:301.092728px;}
.y391{bottom:303.342756px;}
.y34c{bottom:303.342773px;}
.y51{bottom:303.718519px;}
.yf5{bottom:304.620895px;}
.yc6{bottom:304.628095px;}
.y95{bottom:304.685695px;}
.y27a{bottom:305.737953px;}
.y18f{bottom:305.745153px;}
.y1ee{bottom:305.752353px;}
.y142{bottom:305.759553px;}
.y297{bottom:305.766753px;}
.y2a6{bottom:305.773930px;}
.y170{bottom:305.788330px;}
.y1b2{bottom:305.817130px;}
.y20a{bottom:309.632097px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y227{bottom:310.427719px;}
.y2d0{bottom:312.169203px;}
.y305{bottom:314.592728px;}
.y390{bottom:316.842756px;}
.y34b{bottom:316.842773px;}
.y43{bottom:320.899194px;}
.y50{bottom:321.711319px;}
.yc5{bottom:322.620895px;}
.y114{bottom:322.628095px;}
.y94{bottom:322.678495px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y18e{bottom:323.737953px;}
.y1ed{bottom:323.745153px;}
.y141{bottom:323.752353px;}
.y296{bottom:323.759553px;}
.y2a5{bottom:323.766730px;}
.y16f{bottom:323.781130px;}
.y1b1{bottom:323.809930px;}
.y209{bottom:327.627296px;}
.y304{bottom:328.092728px;}
.y226{bottom:328.420519px;}
.y2cf{bottom:330.162003px;}
.y38f{bottom:330.342756px;}
.y34a{bottom:330.342773px;}
.y42{bottom:338.891994px;}
.y4f{bottom:339.704119px;}
.yc4{bottom:340.620895px;}
.yf4{bottom:340.649695px;}
.y93{bottom:340.671295px;}
.y303{bottom:341.592728px;}
.y1ec{bottom:341.737953px;}
.y140{bottom:341.745153px;}
.y295{bottom:341.752353px;}
.y18d{bottom:341.759530px;}
.y1cc{bottom:341.766730px;}
.y16e{bottom:341.773930px;}
.y1b0{bottom:341.802730px;}
.y38e{bottom:343.842756px;}
.y349{bottom:343.842773px;}
.y225{bottom:346.413319px;}
.y10{bottom:348.133500px;}
.y2ce{bottom:348.162003px;}
.y302{bottom:355.092728px;}
.y41{bottom:356.884794px;}
.y38d{bottom:357.342756px;}
.y348{bottom:357.342773px;}
.y4e{bottom:357.696919px;}
.yf3{bottom:358.642495px;}
.y92{bottom:358.664095px;}
.yc3{bottom:358.678495px;}
.y113{bottom:358.692895px;}
.y13f{bottom:359.737953px;}
.y294{bottom:359.745153px;}
.y18c{bottom:359.752330px;}
.y1cb{bottom:359.759530px;}
.y16d{bottom:359.766730px;}
.y1af{bottom:359.795530px;}
.y224{bottom:364.406119px;}
.y2cd{bottom:366.190803px;}
.y301{bottom:368.592728px;}
.y38c{bottom:370.842756px;}
.y347{bottom:370.842773px;}
.y40{bottom:374.877594px;}
.y4d{bottom:375.689719px;}
.yf2{bottom:376.635295px;}
.y91{bottom:376.656895px;}
.yc2{bottom:376.671295px;}
.y112{bottom:376.685695px;}
.y1eb{bottom:377.737953px;}
.y13e{bottom:377.745130px;}
.y1ca{bottom:377.752330px;}
.y16c{bottom:377.759530px;}
.y1ae{bottom:377.788330px;}
.y300{bottom:382.092728px;}
.y208{bottom:382.398919px;}
.y2cc{bottom:384.183603px;}
.y38b{bottom:384.342756px;}
.y346{bottom:384.342773px;}
.yf{bottom:386.785499px;}
.y3f{bottom:392.920794px;}
.y4c{bottom:393.682519px;}
.yf1{bottom:394.628095px;}
.y90{bottom:394.649695px;}
.yc1{bottom:394.664095px;}
.y111{bottom:394.678495px;}
.y2ff{bottom:395.592728px;}
.y13d{bottom:395.737930px;}
.y1c9{bottom:395.745130px;}
.y16b{bottom:395.752330px;}
.y293{bottom:395.773930px;}
.y1ad{bottom:395.781130px;}
.y38a{bottom:397.842756px;}
.y345{bottom:397.842773px;}
.y207{bottom:400.391719px;}
.y2cb{bottom:402.176403px;}
.ye{bottom:408.044999px;}
.y2fe{bottom:409.092728px;}
.y3e{bottom:410.913594px;}
.y389{bottom:411.342756px;}
.y344{bottom:411.342773px;}
.y4b{bottom:411.675319px;}
.yf0{bottom:412.620895px;}
.y8f{bottom:412.642495px;}
.yc0{bottom:412.656895px;}
.y110{bottom:412.671295px;}
.y13c{bottom:413.737930px;}
.y16a{bottom:413.745130px;}
.y18b{bottom:413.752330px;}
.y292{bottom:413.766730px;}
.y1ac{bottom:413.773930px;}
.y279{bottom:413.781130px;}
.y206{bottom:418.384519px;}
.y2ca{bottom:420.169203px;}
.y2fd{bottom:422.592728px;}
.y388{bottom:424.842756px;}
.y343{bottom:424.842773px;}
.y3d{bottom:428.906394px;}
.y4a{bottom:429.668119px;}
.y8e{bottom:430.635295px;}
.ybf{bottom:430.649695px;}
.yef{bottom:430.664095px;}
.y169{bottom:431.737930px;}
.y18a{bottom:431.745130px;}
.y291{bottom:431.759530px;}
.y1ab{bottom:431.766730px;}
.y278{bottom:431.773930px;}
.y2fc{bottom:436.092728px;}
.y205{bottom:436.377319px;}
.y2c9{bottom:438.162003px;}
.y387{bottom:438.342756px;}
.y342{bottom:438.342773px;}
.y3c{bottom:446.899194px;}
.y49{bottom:447.660919px;}
.y8d{bottom:448.628095px;}
.ybe{bottom:448.642495px;}
.yee{bottom:448.656895px;}
.y2fb{bottom:449.592728px;}
.y189{bottom:449.737930px;}
.y13b{bottom:449.745130px;}
.y290{bottom:449.752330px;}
.y1aa{bottom:449.759530px;}
.y277{bottom:449.766730px;}
.y386{bottom:451.842756px;}
.y341{bottom:451.842773px;}
.y223{bottom:454.391719px;}
.y204{bottom:454.398919px;}
.y2c8{bottom:456.162003px;}
.y2fa{bottom:463.092728px;}
.y3b{bottom:464.891994px;}
.y385{bottom:465.342756px;}
.y340{bottom:465.342773px;}
.y48{bottom:465.675319px;}
.y8c{bottom:466.620895px;}
.ybd{bottom:466.635295px;}
.yed{bottom:466.649695px;}
.y13a{bottom:467.737930px;}
.y28f{bottom:467.745130px;}
.y1a9{bottom:467.752330px;}
.y1c8{bottom:467.759530px;}
.y222{bottom:472.384519px;}
.y203{bottom:472.391719px;}
.y2c7{bottom:474.190803px;}
.y2f9{bottom:476.592728px;}
.y384{bottom:478.842756px;}
.y33f{bottom:478.842773px;}
.y3a{bottom:482.884794px;}
.y47{bottom:483.668119px;}
.ybc{bottom:484.628095px;}
.yec{bottom:484.642495px;}
.y8b{bottom:484.678495px;}
.yd{bottom:484.864502px;}
.y28e{bottom:485.737930px;}
.y1a8{bottom:485.745130px;}
.y139{bottom:485.752330px;}
.y168{bottom:485.781130px;}
.y1ea{bottom:485.845930px;}
.y2f8{bottom:490.092728px;}
.y221{bottom:490.377319px;}
.y202{bottom:490.384519px;}
.y2c6{bottom:492.183603px;}
.y383{bottom:492.342756px;}
.y33e{bottom:492.342773px;}
.y39{bottom:500.877594px;}
.y46{bottom:501.660919px;}
.ybb{bottom:502.620895px;}
.yeb{bottom:502.635295px;}
.y8a{bottom:502.671295px;}
.yc{bottom:502.864502px;}
.y2f7{bottom:503.592728px;}
.y1a7{bottom:503.737930px;}
.y138{bottom:503.745130px;}
.y2a4{bottom:503.759530px;}
.y167{bottom:503.773930px;}
.y1e9{bottom:503.838730px;}
.y253{bottom:504.131117px;}
.y382{bottom:505.842756px;}
.y33d{bottom:505.842773px;}
.y201{bottom:508.377319px;}
.y2c5{bottom:510.176403px;}
.y2f6{bottom:517.092728px;}
.y38{bottom:518.877594px;}
.y381{bottom:519.342756px;}
.y33c{bottom:519.342773px;}
.y45{bottom:519.687290px;}
.yea{bottom:520.628095px;}
.yba{bottom:520.642495px;}
.y89{bottom:520.664095px;}
.yb{bottom:520.864502px;}
.y137{bottom:521.737930px;}
.y283{bottom:521.752330px;}
.y266{bottom:521.759530px;}
.y166{bottom:521.766730px;}
.y1e8{bottom:521.831530px;}
.y252{bottom:522.123917px;}
.y220{bottom:526.406119px;}
.y200{bottom:526.413319px;}
.y2c4{bottom:528.169203px;}
.y2f5{bottom:530.592728px;}
.y380{bottom:532.842756px;}
.y33b{bottom:532.842773px;}
.y37{bottom:536.877594px;}
.y44{bottom:537.680090px;}
.ye9{bottom:538.620895px;}
.yb9{bottom:538.635295px;}
.y88{bottom:538.656895px;}
.ya{bottom:538.864499px;}
.y136{bottom:539.737930px;}
.y282{bottom:539.745130px;}
.y265{bottom:539.752330px;}
.y165{bottom:539.759530px;}
.y188{bottom:539.766730px;}
.y1e7{bottom:539.824330px;}
.y251{bottom:540.123917px;}
.y2f4{bottom:544.092728px;}
.y21f{bottom:544.398919px;}
.y1ff{bottom:544.406119px;}
.y2c3{bottom:546.162003px;}
.y37f{bottom:546.342756px;}
.y33a{bottom:546.342773px;}
.y3a3{bottom:550.842728px;}
.y10f{bottom:556.620895px;}
.yb8{bottom:556.628095px;}
.ye8{bottom:556.635295px;}
.y87{bottom:556.649695px;}
.y9{bottom:556.864499px;}
.y2f3{bottom:557.592728px;}
.y281{bottom:557.737930px;}
.y264{bottom:557.745130px;}
.y164{bottom:557.752330px;}
.y187{bottom:557.759530px;}
.y1e6{bottom:557.817130px;}
.y250{bottom:558.123917px;}
.y37e{bottom:559.842756px;}
.y339{bottom:559.842773px;}
.y21e{bottom:562.391719px;}
.y1fe{bottom:562.398919px;}
.y2c2{bottom:564.176403px;}
.y3a2{bottom:564.342728px;}
.y2f2{bottom:571.092728px;}
.y37d{bottom:573.342756px;}
.y338{bottom:573.342773px;}
.yb7{bottom:574.620895px;}
.ye7{bottom:574.628095px;}
.y86{bottom:574.642495px;}
.y263{bottom:575.737930px;}
.y163{bottom:575.745130px;}
.y186{bottom:575.752330px;}
.y135{bottom:575.773930px;}
.y1c7{bottom:575.788330px;}
.y1e5{bottom:575.809930px;}
.y3a1{bottom:577.842728px;}
.y21d{bottom:580.384519px;}
.y1fd{bottom:580.391719px;}
.y2c1{bottom:582.169203px;}
.y2f1{bottom:584.592728px;}
.y37c{bottom:586.842756px;}
.y337{bottom:586.842773px;}
.y36{bottom:588.215057px;}
.ye6{bottom:592.620895px;}
.y85{bottom:592.635295px;}
.yb6{bottom:592.642495px;}
.y162{bottom:593.737930px;}
.y185{bottom:593.745130px;}
.y134{bottom:593.766730px;}
.y1c6{bottom:593.781130px;}
.y1e4{bottom:593.802730px;}
.y24f{bottom:594.131117px;}
.y2f0{bottom:598.092728px;}
.y21c{bottom:598.377319px;}
.y1fc{bottom:598.384519px;}
.y2c0{bottom:600.162003px;}
.y37b{bottom:600.342756px;}
.y336{bottom:600.342773px;}
.y84{bottom:610.628095px;}
.yb5{bottom:610.635295px;}
.y35{bottom:610.715057px;}
.ye5{bottom:610.728941px;}
.y2ef{bottom:611.592728px;}
.y184{bottom:611.737930px;}
.y1a6{bottom:611.745130px;}
.y133{bottom:611.759530px;}
.y161{bottom:611.773930px;}
.y2a3{bottom:611.781130px;}
.y28d{bottom:611.788330px;}
.y1e3{bottom:611.795530px;}
.y24e{bottom:612.123917px;}
.y37a{bottom:613.842756px;}
.y335{bottom:613.842773px;}
.y1fb{bottom:616.377319px;}
.y21b{bottom:616.439540px;}
.y2bf{bottom:618.176403px;}
.y379{bottom:627.342756px;}
.y334{bottom:627.342773px;}
.y83{bottom:628.620895px;}
.yb4{bottom:628.628095px;}
.y34{bottom:628.715057px;}
.ye4{bottom:628.721741px;}
.y1a5{bottom:629.737930px;}
.y276{bottom:629.745130px;}
.y132{bottom:629.752330px;}
.y160{bottom:629.766730px;}
.y2a2{bottom:629.773930px;}
.y28c{bottom:629.781130px;}
.y1e2{bottom:629.788330px;}
.y24d{bottom:630.145517px;}
.y1fa{bottom:634.384519px;}
.y21a{bottom:634.432340px;}
.y2be{bottom:636.169203px;}
.y378{bottom:640.842756px;}
.y333{bottom:640.842773px;}
.y8{bottom:645.510000px;}
.yb3{bottom:646.620895px;}
.y82{bottom:646.628095px;}
.ye3{bottom:646.714541px;}
.y33{bottom:646.715057px;}
.y275{bottom:647.737930px;}
.y131{bottom:647.745130px;}
.y1a4{bottom:647.752330px;}
.y15f{bottom:647.759530px;}
.y2a1{bottom:647.766730px;}
.y28b{bottom:647.773930px;}
.y1e1{bottom:647.781130px;}
.y280{bottom:647.802776px;}
.y24c{bottom:648.138317px;}
.y1f9{bottom:652.377319px;}
.y219{bottom:652.425140px;}
.y2bd{bottom:654.162003px;}
.y377{bottom:654.342756px;}
.y332{bottom:654.342773px;}
.y81{bottom:664.620895px;}
.yb2{bottom:664.642495px;}
.y10e{bottom:664.656895px;}
.ye2{bottom:664.707341px;}
.y32{bottom:664.715057px;}
.y130{bottom:665.737930px;}
.y1a3{bottom:665.745130px;}
.y15e{bottom:665.752330px;}
.y274{bottom:665.759530px;}
.y28a{bottom:665.766730px;}
.y1e0{bottom:665.773930px;}
.y27f{bottom:665.795576px;}
.y24b{bottom:666.131117px;}
.y7{bottom:666.771000px;}
.y376{bottom:667.842756px;}
.y331{bottom:667.842773px;}
.y1f8{bottom:670.391719px;}
.y218{bottom:670.417940px;}
.y2bc{bottom:672.212357px;}
.y375{bottom:681.342756px;}
.y330{bottom:681.342773px;}
.y80{bottom:682.635295px;}
.y10d{bottom:682.649695px;}
.ye1{bottom:682.700141px;}
.y31{bottom:682.715057px;}
.y1a2{bottom:683.737930px;}
.y15d{bottom:683.745130px;}
.y12f{bottom:683.752330px;}
.y183{bottom:683.759530px;}
.y1df{bottom:683.766730px;}
.y262{bottom:683.773976px;}
.y27e{bottom:683.788376px;}
.y24a{bottom:684.123917px;}
.y1f7{bottom:688.384519px;}
.y217{bottom:688.410740px;}
.y2bb{bottom:690.205157px;}
.y374{bottom:694.842756px;}
.y32f{bottom:694.842773px;}
.y2ee{bottom:699.342728px;}
.y7f{bottom:700.628095px;}
.y10c{bottom:700.642495px;}
.ye0{bottom:700.692941px;}
.y30{bottom:700.715057px;}
.y15c{bottom:701.737930px;}
.y12e{bottom:701.745130px;}
.y182{bottom:701.752330px;}
.y1de{bottom:701.759530px;}
.y261{bottom:701.766776px;}
.y1a1{bottom:701.773976px;}
.y27d{bottom:701.781176px;}
.y249{bottom:702.181471px;}
.y1f6{bottom:706.377319px;}
.y216{bottom:706.403540px;}
.y2ba{bottom:708.197957px;}
.y373{bottom:708.342756px;}
.y32e{bottom:708.342773px;}
.y7e{bottom:718.620895px;}
.y10b{bottom:718.635295px;}
.ydf{bottom:718.685741px;}
.y2f{bottom:718.715057px;}
.y12d{bottom:719.737930px;}
.y15b{bottom:719.745130px;}
.y1dd{bottom:719.752330px;}
.y260{bottom:719.759576px;}
.y1a0{bottom:719.766776px;}
.y27c{bottom:719.773976px;}
.y248{bottom:720.174271px;}
.y372{bottom:721.842756px;}
.y32d{bottom:721.842773px;}
.y2b9{bottom:726.190757px;}
.y6{bottom:726.298500px;}
.y371{bottom:735.342756px;}
.y32c{bottom:735.342773px;}
.yb1{bottom:736.620895px;}
.y10a{bottom:736.628095px;}
.y7d{bottom:736.635341px;}
.yde{bottom:736.678541px;}
.y2e{bottom:736.715057px;}
.y15a{bottom:737.737930px;}
.y1dc{bottom:737.745130px;}
.y12c{bottom:737.752376px;}
.y19f{bottom:737.759576px;}
.y27b{bottom:737.766776px;}
.y247{bottom:738.167071px;}
.y2ed{bottom:739.842728px;}
.y2b8{bottom:744.183557px;}
.y370{bottom:748.842756px;}
.y32b{bottom:748.842773px;}
.y3{bottom:752.599495px;}
.y2ec{bottom:753.342728px;}
.y109{bottom:754.620895px;}
.y7c{bottom:754.628141px;}
.yb0{bottom:754.649741px;}
.ydd{bottom:754.671341px;}
.y2d{bottom:754.715057px;}
.y1db{bottom:755.737930px;}
.y12b{bottom:755.745176px;}
.y181{bottom:755.752376px;}
.y1c5{bottom:755.759576px;}
.y246{bottom:756.159871px;}
.y235{bottom:758.066895px;}
.y2b7{bottom:762.176357px;}
.y36f{bottom:762.342756px;}
.y32a{bottom:762.342773px;}
.y7b{bottom:772.620941px;}
.y108{bottom:772.635341px;}
.yaf{bottom:772.642541px;}
.ydc{bottom:772.664141px;}
.y2c{bottom:772.715057px;}
.y234{bottom:773.066895px;}
.y12a{bottom:773.737976px;}
.y180{bottom:773.745176px;}
.y1c4{bottom:773.752376px;}
.y2a0{bottom:773.766776px;}
.y245{bottom:774.152671px;}
.y36e{bottom:775.842756px;}
.y329{bottom:775.842773px;}
.y2b6{bottom:780.169157px;}
.y2eb{bottom:780.342773px;}
.y233{bottom:788.066895px;}
.y36d{bottom:789.342756px;}
.y328{bottom:789.342773px;}
.y7a{bottom:790.620941px;}
.y107{bottom:790.628141px;}
.yae{bottom:790.635341px;}
.ydb{bottom:790.656941px;}
.y2b{bottom:790.715057px;}
.y159{bottom:791.737976px;}
.y1c3{bottom:791.745176px;}
.y129{bottom:791.759576px;}
.y25f{bottom:791.781176px;}
.y244{bottom:792.145471px;}
.y2b5{bottom:798.161957px;}
.y36c{bottom:802.842756px;}
.y327{bottom:802.842773px;}
.y106{bottom:808.620941px;}
.yad{bottom:808.628141px;}
.yda{bottom:808.649741px;}
.y79{bottom:808.656941px;}
.y2a{bottom:808.715057px;}
.y17f{bottom:809.737976px;}
.y273{bottom:809.745176px;}
.y128{bottom:809.752376px;}
.y289{bottom:809.759576px;}
.y25e{bottom:809.773976px;}
.y19e{bottom:809.802776px;}
.y243{bottom:810.138271px;}
.y2b4{bottom:816.169157px;}
.y2ea{bottom:816.341990px;}
.y36b{bottom:816.342756px;}
.y326{bottom:816.342773px;}
.yac{bottom:826.620941px;}
.yd9{bottom:826.642541px;}
.y78{bottom:826.649741px;}
.y158{bottom:827.737976px;}
.y127{bottom:827.745176px;}
.y288{bottom:827.752376px;}
.y25d{bottom:827.766776px;}
.y19d{bottom:827.795576px;}
.y242{bottom:828.131071px;}
.y2e9{bottom:829.841990px;}
.y36a{bottom:829.842756px;}
.y325{bottom:829.842773px;}
.y29{bottom:831.215057px;}
.y2b3{bottom:834.161957px;}
.y369{bottom:843.342756px;}
.y324{bottom:843.342773px;}
.yd8{bottom:844.635341px;}
.y77{bottom:844.642541px;}
.yab{bottom:844.664141px;}
.y126{bottom:845.737976px;}
.y287{bottom:845.745176px;}
.y1da{bottom:845.752376px;}
.y25c{bottom:845.759576px;}
.y19c{bottom:845.788376px;}
.y272{bottom:845.817176px;}
.y241{bottom:846.123871px;}
.y2b2{bottom:852.161957px;}
.y2e8{bottom:856.841990px;}
.y368{bottom:856.842756px;}
.y323{bottom:856.842773px;}
.yd7{bottom:862.628141px;}
.y76{bottom:862.635341px;}
.yaa{bottom:862.656941px;}
.y1c2{bottom:863.737976px;}
.y125{bottom:863.745176px;}
.y157{bottom:863.752376px;}
.y19b{bottom:863.781176px;}
.y271{bottom:863.809976px;}
.y240{bottom:864.123871px;}
.y2e7{bottom:870.341990px;}
.y367{bottom:870.342756px;}
.y322{bottom:870.342773px;}
.y2{bottom:879.369000px;}
.yd6{bottom:880.620941px;}
.y75{bottom:880.628141px;}
.ya9{bottom:880.649741px;}
.y124{bottom:881.737976px;}
.y156{bottom:881.745176px;}
.y19a{bottom:881.773976px;}
.y270{bottom:881.802776px;}
.y23f{bottom:882.131071px;}
.y366{bottom:883.842756px;}
.y321{bottom:883.842773px;}
.y2e6{bottom:897.341990px;}
.y365{bottom:897.342756px;}
.y320{bottom:897.342773px;}
.y74{bottom:898.620941px;}
.ya8{bottom:898.642541px;}
.y105{bottom:898.649741px;}
.y123{bottom:899.737976px;}
.y17e{bottom:899.745176px;}
.y1d9{bottom:899.752376px;}
.y199{bottom:899.766776px;}
.y1c1{bottom:899.773976px;}
.y26f{bottom:899.795576px;}
.y23e{bottom:900.123871px;}
.y28{bottom:903.552612px;}
.y2e5{bottom:910.841990px;}
.y364{bottom:910.842756px;}
.y31f{bottom:910.842773px;}
.ya7{bottom:916.635341px;}
.y104{bottom:916.642541px;}
.y73{bottom:916.671341px;}
.y17d{bottom:917.737976px;}
.y1d8{bottom:917.745176px;}
.y29f{bottom:917.752376px;}
.y198{bottom:917.759576px;}
.y1c0{bottom:917.766776px;}
.y26e{bottom:917.788376px;}
.y155{bottom:917.788653px;}
.y25b{bottom:917.789117px;}
.y23d{bottom:918.123871px;}
.y2e4{bottom:924.341990px;}
.y363{bottom:924.342756px;}
.y31e{bottom:924.342773px;}
.ya6{bottom:934.628141px;}
.y103{bottom:934.635341px;}
.y72{bottom:934.664141px;}
.y1d7{bottom:935.737976px;}
.y29e{bottom:935.745176px;}
.y122{bottom:935.752376px;}
.y1bf{bottom:935.759576px;}
.y26d{bottom:935.781176px;}
.y154{bottom:935.781453px;}
.y25a{bottom:935.781917px;}
.y23c{bottom:936.159871px;}
.y2e3{bottom:937.841990px;}
.y362{bottom:937.842756px;}
.y31d{bottom:937.842773px;}
.y27{bottom:939.565528px;}
.y2e2{bottom:951.341990px;}
.y361{bottom:951.342756px;}
.y31c{bottom:951.342773px;}
.ya5{bottom:952.620941px;}
.y102{bottom:952.628141px;}
.y71{bottom:952.656941px;}
.y1d6{bottom:953.737976px;}
.y121{bottom:953.745176px;}
.y1be{bottom:953.752376px;}
.y26c{bottom:953.773976px;}
.y153{bottom:953.774253px;}
.y259{bottom:953.774717px;}
.y23b{bottom:954.152671px;}
.y2e1{bottom:964.841990px;}
.y360{bottom:964.842756px;}
.y31b{bottom:964.842773px;}
.y1{bottom:966.726000px;}
.y101{bottom:970.620941px;}
.yd5{bottom:970.625742px;}
.y70{bottom:970.649741px;}
.ya4{bottom:970.714815px;}
.y120{bottom:971.737976px;}
.y1bd{bottom:971.745176px;}
.y29d{bottom:971.752376px;}
.y26b{bottom:971.766776px;}
.y152{bottom:971.767053px;}
.y258{bottom:971.767517px;}
.y23a{bottom:972.145471px;}
.y35f{bottom:978.342756px;}
.y31a{bottom:978.342773px;}
.y26{bottom:978.553528px;}
.yd4{bottom:988.620941px;}
.y6f{bottom:988.642541px;}
.ya3{bottom:988.707615px;}
.y197{bottom:989.737976px;}
.y11f{bottom:989.745176px;}
.y17c{bottom:989.759576px;}
.y151{bottom:989.759853px;}
.y257{bottom:989.760317px;}
.y239{bottom:990.138271px;}
.y2e0{bottom:991.841990px;}
.y35e{bottom:991.842756px;}
.y319{bottom:991.842773px;}
.y2df{bottom:1005.341990px;}
.y35d{bottom:1005.342756px;}
.y318{bottom:1005.342773px;}
.y6e{bottom:1006.635341px;}
.ya2{bottom:1006.700415px;}
.y11e{bottom:1007.737976px;}
.y17b{bottom:1007.752376px;}
.y150{bottom:1007.752653px;}
.y256{bottom:1007.753117px;}
.y1d5{bottom:1007.759853px;}
.y238{bottom:1008.131071px;}
.y35c{bottom:1018.842756px;}
.y317{bottom:1018.842773px;}
.y100{bottom:1024.620941px;}
.y6d{bottom:1024.628141px;}
.ya1{bottom:1024.693215px;}
.y11d{bottom:1025.737976px;}
.y196{bottom:1025.738253px;}
.y17a{bottom:1025.745176px;}
.y14f{bottom:1025.745453px;}
.y255{bottom:1025.745917px;}
.y1d4{bottom:1025.752653px;}
.y29c{bottom:1025.759853px;}
.y237{bottom:1026.123871px;}
.y2de{bottom:1032.341990px;}
.y35b{bottom:1032.342756px;}
.y316{bottom:1032.342773px;}
.y25{bottom:1033.362579px;}
.y58{bottom:1035.750183px;}
.y6c{bottom:1042.620941px;}
.yff{bottom:1042.635595px;}
.ya0{bottom:1042.686015px;}
.y195{bottom:1043.731053px;}
.y11c{bottom:1043.737976px;}
.y14e{bottom:1043.738253px;}
.y254{bottom:1043.738717px;}
.y1d3{bottom:1043.745453px;}
.y29b{bottom:1043.752653px;}
.y236{bottom:1044.123871px;}
.y2dd{bottom:1045.841990px;}
.y35a{bottom:1045.842756px;}
.y315{bottom:1045.842773px;}
.y60{bottom:1096.249512px;}
.y24{bottom:1112.297079px;}
.yd1{bottom:1126.524628px;}
.y6a{bottom:1126.524719px;}
.yd3{bottom:1126.756989px;}
.y23{bottom:1126.925079px;}
.yd2{bottom:1127.300079px;}
.y6b{bottom:1127.304719px;}
.h19{height:27.814500px;}
.h7{height:32.130000px;}
.h14{height:37.086000px;}
.h22{height:38.835000px;}
.h15{height:39.675000px;}
.h18{height:39.735000px;}
.h13{height:41.538000px;}
.h1e{height:42.384000px;}
.h21{height:42.840000px;}
.h20{height:43.785000px;}
.hb{height:45.696000px;}
.h1a{height:45.744000px;}
.h6{height:45.900000px;}
.ha{height:47.232000px;}
.h1d{height:47.472000px;}
.h3{height:48.195000px;}
.h10{height:52.980000px;}
.h1c{height:53.654399px;}
.h1b{height:53.709599px;}
.h2{height:55.080000px;}
.h12{height:55.860000px;}
.h11{height:58.380000px;}
.h1f{height:60.564000px;}
.hf{height:61.120200px;}
.he{height:67.194379px;}
.h16{height:71.000160px;}
.h17{height:71.000799px;}
.hc{height:77.142000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.hd{height:137.088000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:239.935500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:57.922806px;}
.x5{left:84.933002px;}
.x6{left:92.734348px;}
.x7{left:94.683150px;}
.xf{left:97.034552px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:115.785602px;}
.x4{left:203.484001px;}
.xb{left:270.817497px;}
.x3{left:454.959000px;}
.x8{left:457.092894px;}
.x9{left:469.081794px;}
.x11{left:487.832844px;}
.xc{left:567.939011px;}
.xa{left:694.929886px;}
.x10{left:741.068390px;}
.xe{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:23.466471pt;}
.ls9{letter-spacing:-1.358933pt;}
.ls6{letter-spacing:-0.933333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.000076pt;}
.ls11{letter-spacing:0.120000pt;}
.ls7{letter-spacing:0.261333pt;}
.lsc{letter-spacing:0.559994pt;}
.lsa{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.563987pt;}
.lse{letter-spacing:0.563994pt;}
.lsd{letter-spacing:0.563996pt;}
.lsb{letter-spacing:0.564000pt;}
.lsf{letter-spacing:0.567985pt;}
.ls8{letter-spacing:0.731733pt;}
.ls3{letter-spacing:0.893753pt;}
.ls1{letter-spacing:4.853333pt;}
.ws11a{word-spacing:-13.014400pt;}
.ws28{word-spacing:-12.544000pt;}
.ws27{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-10.560000pt;}
.ws154{word-spacing:-10.156800pt;}
.ws15e{word-spacing:-9.320000pt;}
.ws1{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws15c{word-spacing:-8.880000pt;}
.ws6{word-spacing:-8.760000pt;}
.ws153{word-spacing:-8.280000pt;}
.ws15b{word-spacing:-7.760000pt;}
.ws5{word-spacing:-7.242667pt;}
.ws155{word-spacing:-7.200000pt;}
.ws159{word-spacing:-1.680000pt;}
.ws132{word-spacing:-1.463467pt;}
.ws152{word-spacing:-1.411200pt;}
.ws78{word-spacing:-1.097600pt;}
.ws127{word-spacing:-0.940800pt;}
.ws121{word-spacing:-0.731733pt;}
.ws7{word-spacing:-0.693333pt;}
.ws139{word-spacing:-0.679467pt;}
.ws75{word-spacing:-0.627200pt;}
.ws72{word-spacing:-0.574933pt;}
.ws15d{word-spacing:-0.560000pt;}
.wse2{word-spacing:-0.522667pt;}
.wsb{word-spacing:-0.470400pt;}
.ws10f{word-spacing:-0.418133pt;}
.wsc9{word-spacing:-0.365867pt;}
.wsd1{word-spacing:-0.313600pt;}
.wsd2{word-spacing:-0.261333pt;}
.ws41{word-spacing:-0.209067pt;}
.wscb{word-spacing:-0.156800pt;}
.ws160{word-spacing:-0.120000pt;}
.wsd0{word-spacing:-0.104533pt;}
.ws15f{word-spacing:-0.080000pt;}
.ws137{word-spacing:-0.052267pt;}
.ws15a{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
.ws14f{word-spacing:0.052267pt;}
.ws4a{word-spacing:0.104533pt;}
.ws7a{word-spacing:0.156800pt;}
.wsaa{word-spacing:0.209067pt;}
.wsa2{word-spacing:0.261333pt;}
.wsa6{word-spacing:0.313600pt;}
.ws108{word-spacing:0.365867pt;}
.ws87{word-spacing:0.418133pt;}
.wsc{word-spacing:0.470400pt;}
.wsa1{word-spacing:0.522667pt;}
.wsb9{word-spacing:0.574933pt;}
.wsdc{word-spacing:0.627200pt;}
.ws5c{word-spacing:0.679467pt;}
.ws12a{word-spacing:0.731733pt;}
.wse{word-spacing:0.784000pt;}
.ws10b{word-spacing:0.888533pt;}
.ws118{word-spacing:0.940800pt;}
.wsf9{word-spacing:0.993067pt;}
.wsd3{word-spacing:1.045333pt;}
.wse4{word-spacing:1.097600pt;}
.ws25{word-spacing:1.149867pt;}
.ws65{word-spacing:1.202133pt;}
.ws140{word-spacing:1.254400pt;}
.wsbe{word-spacing:1.306667pt;}
.ws9d{word-spacing:1.358933pt;}
.ws9{word-spacing:1.411200pt;}
.ws9f{word-spacing:1.463467pt;}
.ws39{word-spacing:1.515733pt;}
.ws6c{word-spacing:1.568000pt;}
.ws22{word-spacing:1.620267pt;}
.wse3{word-spacing:1.672533pt;}
.ws79{word-spacing:1.724800pt;}
.ws111{word-spacing:1.829333pt;}
.wsa0{word-spacing:1.881600pt;}
.ws122{word-spacing:1.933867pt;}
.wsab{word-spacing:1.986133pt;}
.ws9c{word-spacing:2.038400pt;}
.ws131{word-spacing:2.090667pt;}
.wsdf{word-spacing:2.142933pt;}
.ws1e{word-spacing:2.195200pt;}
.wsbc{word-spacing:2.299733pt;}
.ws5e{word-spacing:2.352000pt;}
.ws76{word-spacing:2.404267pt;}
.ws128{word-spacing:2.456533pt;}
.ws144{word-spacing:2.508800pt;}
.ws134{word-spacing:2.561067pt;}
.ws2b{word-spacing:2.613333pt;}
.ws8c{word-spacing:2.665600pt;}
.wsde{word-spacing:2.717867pt;}
.ws2d{word-spacing:2.770133pt;}
.wsb7{word-spacing:2.822400pt;}
.wsf{word-spacing:2.874667pt;}
.ws46{word-spacing:2.926933pt;}
.ws73{word-spacing:2.979200pt;}
.wsa4{word-spacing:3.031467pt;}
.ws61{word-spacing:3.083733pt;}
.ws133{word-spacing:3.136000pt;}
.wsd5{word-spacing:3.188267pt;}
.ws47{word-spacing:3.240533pt;}
.ws8d{word-spacing:3.292800pt;}
.wse1{word-spacing:3.345067pt;}
.ws148{word-spacing:3.397333pt;}
.ws8e{word-spacing:3.449600pt;}
.wsc6{word-spacing:3.501867pt;}
.ws145{word-spacing:3.554133pt;}
.ws69{word-spacing:3.606400pt;}
.ws107{word-spacing:3.710933pt;}
.wsb8{word-spacing:3.763200pt;}
.wsa9{word-spacing:3.815467pt;}
.ws149{word-spacing:3.867733pt;}
.ws77{word-spacing:3.920000pt;}
.ws14c{word-spacing:3.972267pt;}
.ws84{word-spacing:4.024533pt;}
.ws34{word-spacing:4.076800pt;}
.wsaf{word-spacing:4.129067pt;}
.ws26{word-spacing:4.181333pt;}
.ws5b{word-spacing:4.233600pt;}
.ws7f{word-spacing:4.285867pt;}
.ws53{word-spacing:4.338133pt;}
.ws7e{word-spacing:4.390400pt;}
.ws57{word-spacing:4.442667pt;}
.ws92{word-spacing:4.547200pt;}
.ws1a{word-spacing:4.599467pt;}
.ws36{word-spacing:4.651733pt;}
.ws99{word-spacing:4.704000pt;}
.ws7d{word-spacing:4.756267pt;}
.ws4f{word-spacing:4.808533pt;}
.wsa8{word-spacing:4.860800pt;}
.ws58{word-spacing:4.913067pt;}
.ws35{word-spacing:4.965333pt;}
.wscc{word-spacing:5.017600pt;}
.ws21{word-spacing:5.069867pt;}
.ws10e{word-spacing:5.122133pt;}
.wsf6{word-spacing:5.174400pt;}
.ws89{word-spacing:5.226667pt;}
.wsec{word-spacing:5.278933pt;}
.ws42{word-spacing:5.331200pt;}
.ws88{word-spacing:5.383467pt;}
.ws100{word-spacing:5.435733pt;}
.ws11c{word-spacing:5.488000pt;}
.ws3e{word-spacing:5.540267pt;}
.ws2a{word-spacing:5.592533pt;}
.ws37{word-spacing:5.644800pt;}
.wsc1{word-spacing:5.697067pt;}
.wseb{word-spacing:5.749333pt;}
.ws67{word-spacing:5.801600pt;}
.ws8b{word-spacing:5.853867pt;}
.wsb4{word-spacing:5.906133pt;}
.ws70{word-spacing:5.958400pt;}
.wsb5{word-spacing:6.010667pt;}
.ws13{word-spacing:6.062933pt;}
.ws3a{word-spacing:6.115200pt;}
.ws138{word-spacing:6.167467pt;}
.ws64{word-spacing:6.219733pt;}
.wsa7{word-spacing:6.272000pt;}
.ws14a{word-spacing:6.324267pt;}
.ws101{word-spacing:6.376533pt;}
.ws1f{word-spacing:6.428800pt;}
.wsf7{word-spacing:6.481067pt;}
.ws20{word-spacing:6.533333pt;}
.wsca{word-spacing:6.585600pt;}
.ws151{word-spacing:6.637867pt;}
.wsc5{word-spacing:6.690133pt;}
.ws3f{word-spacing:6.742400pt;}
.wsb1{word-spacing:6.794667pt;}
.ws5d{word-spacing:6.846933pt;}
.ws8f{word-spacing:6.899200pt;}
.ws93{word-spacing:6.951467pt;}
.ws9e{word-spacing:7.003733pt;}
.ws33{word-spacing:7.056000pt;}
.ws40{word-spacing:7.108267pt;}
.ws141{word-spacing:7.160533pt;}
.ws13e{word-spacing:7.212800pt;}
.ws38{word-spacing:7.265067pt;}
.ws8a{word-spacing:7.369600pt;}
.ws30{word-spacing:7.421867pt;}
.wsa3{word-spacing:7.474133pt;}
.wsfb{word-spacing:7.526400pt;}
.ws71{word-spacing:7.578667pt;}
.ws68{word-spacing:7.630933pt;}
.wsc7{word-spacing:7.683200pt;}
.ws16{word-spacing:7.735467pt;}
.ws10c{word-spacing:7.787733pt;}
.ws10{word-spacing:7.840000pt;}
.ws8{word-spacing:7.892267pt;}
.ws7c{word-spacing:7.944533pt;}
.ws12c{word-spacing:8.049067pt;}
.ws1d{word-spacing:8.101333pt;}
.ws60{word-spacing:8.205867pt;}
.ws55{word-spacing:8.258133pt;}
.ws83{word-spacing:8.310400pt;}
.ws135{word-spacing:8.362667pt;}
.ws50{word-spacing:8.414933pt;}
.ws15{word-spacing:8.467200pt;}
.wsba{word-spacing:8.519467pt;}
.ws6a{word-spacing:8.571733pt;}
.ws4d{word-spacing:8.624000pt;}
.ws98{word-spacing:8.676267pt;}
.ws14b{word-spacing:8.728533pt;}
.ws24{word-spacing:8.780800pt;}
.wsf2{word-spacing:8.833067pt;}
.ws12d{word-spacing:8.885333pt;}
.ws6e{word-spacing:8.937600pt;}
.ws94{word-spacing:8.989867pt;}
.ws3d{word-spacing:9.042133pt;}
.wsb6{word-spacing:9.094400pt;}
.ws104{word-spacing:9.146667pt;}
.ws12e{word-spacing:9.198933pt;}
.ws29{word-spacing:9.251200pt;}
.ws18{word-spacing:9.303467pt;}
.ws45{word-spacing:9.355733pt;}
.ws59{word-spacing:9.408000pt;}
.ws13b{word-spacing:9.460267pt;}
.wsc8{word-spacing:9.512533pt;}
.wsbb{word-spacing:9.564800pt;}
.wscf{word-spacing:9.617067pt;}
.ws62{word-spacing:9.721600pt;}
.ws119{word-spacing:9.773867pt;}
.ws17{word-spacing:9.878400pt;}
.wsee{word-spacing:9.930667pt;}
.wsef{word-spacing:9.982933pt;}
.wsdb{word-spacing:10.035200pt;}
.wsbf{word-spacing:10.087467pt;}
.ws81{word-spacing:10.139733pt;}
.ws14{word-spacing:10.192000pt;}
.ws9b{word-spacing:10.244267pt;}
.wse5{word-spacing:10.296533pt;}
.ws110{word-spacing:10.348800pt;}
.ws142{word-spacing:10.401067pt;}
.ws2f{word-spacing:10.453333pt;}
.ws44{word-spacing:10.505600pt;}
.wse8{word-spacing:10.557867pt;}
.ws9a{word-spacing:10.610133pt;}
.ws3c{word-spacing:10.662400pt;}
.ws130{word-spacing:10.714667pt;}
.wsda{word-spacing:10.766933pt;}
.ws80{word-spacing:10.819200pt;}
.wsd9{word-spacing:10.871467pt;}
.ws13d{word-spacing:10.923733pt;}
.ws11b{word-spacing:10.976000pt;}
.ws105{word-spacing:11.028267pt;}
.ws11d{word-spacing:11.132800pt;}
.wsfc{word-spacing:11.185067pt;}
.wsd4{word-spacing:11.237333pt;}
.ws2e{word-spacing:11.289600pt;}
.ws3b{word-spacing:11.341867pt;}
.ws6f{word-spacing:11.446400pt;}
.wsf8{word-spacing:11.498667pt;}
.wsf3{word-spacing:11.550933pt;}
.wsd8{word-spacing:11.603200pt;}
.wse7{word-spacing:11.655467pt;}
.ws150{word-spacing:11.707733pt;}
.wsf5{word-spacing:11.760000pt;}
.wsa{word-spacing:11.812267pt;}
.wsd7{word-spacing:11.864533pt;}
.ws12f{word-spacing:11.916800pt;}
.wse6{word-spacing:12.021333pt;}
.ws86{word-spacing:12.073600pt;}
.ws13c{word-spacing:12.125867pt;}
.ws5a{word-spacing:12.178133pt;}
.ws136{word-spacing:12.230400pt;}
.ws4b{word-spacing:12.282667pt;}
.ws117{word-spacing:12.387200pt;}
.ws56{word-spacing:12.439467pt;}
.ws1b{word-spacing:12.491733pt;}
.wsc4{word-spacing:12.544000pt;}
.wsd6{word-spacing:12.596267pt;}
.wsa5{word-spacing:12.753067pt;}
.ws2c{word-spacing:12.805333pt;}
.ws112{word-spacing:12.857600pt;}
.wsad{word-spacing:12.909867pt;}
.ws90{word-spacing:12.962133pt;}
.ws4e{word-spacing:13.014400pt;}
.ws82{word-spacing:13.066667pt;}
.ws1c{word-spacing:13.118933pt;}
.ws91{word-spacing:13.223467pt;}
.ws12{word-spacing:13.275733pt;}
.wsff{word-spacing:13.328000pt;}
.wsfd{word-spacing:13.380267pt;}
.ws106{word-spacing:13.432533pt;}
.ws126{word-spacing:13.484800pt;}
.ws4c{word-spacing:13.589333pt;}
.ws146{word-spacing:13.746133pt;}
.ws32{word-spacing:13.798400pt;}
.ws143{word-spacing:13.955200pt;}
.wsce{word-spacing:14.059733pt;}
.ws14e{word-spacing:14.216533pt;}
.ws54{word-spacing:14.373333pt;}
.wsb2{word-spacing:14.477867pt;}
.wsb0{word-spacing:14.582400pt;}
.wsc0{word-spacing:14.634667pt;}
.wscd{word-spacing:14.686933pt;}
.ws95{word-spacing:14.739200pt;}
.ws13f{word-spacing:14.843733pt;}
.wsd{word-spacing:14.896000pt;}
.ws11{word-spacing:15.105067pt;}
.wsbd{word-spacing:15.157333pt;}
.wsf1{word-spacing:15.261867pt;}
.ws12b{word-spacing:15.418667pt;}
.ws52{word-spacing:15.470933pt;}
.ws23{word-spacing:15.523200pt;}
.ws156{word-spacing:15.575467pt;}
.wsfe{word-spacing:15.627733pt;}
.ws14d{word-spacing:15.680000pt;}
.ws125{word-spacing:15.732267pt;}
.ws96{word-spacing:15.784533pt;}
.wsae{word-spacing:15.993600pt;}
.ws43{word-spacing:16.359467pt;}
.ws129{word-spacing:16.516267pt;}
.wsc2{word-spacing:16.568533pt;}
.ws102{word-spacing:16.620800pt;}
.wsfa{word-spacing:16.673067pt;}
.wse0{word-spacing:16.934400pt;}
.ws7b{word-spacing:17.038933pt;}
.ws66{word-spacing:17.143467pt;}
.ws11f{word-spacing:17.195733pt;}
.ws124{word-spacing:17.404800pt;}
.ws109{word-spacing:17.613867pt;}
.wsc3{word-spacing:17.718400pt;}
.ws85{word-spacing:17.822933pt;}
.ws116{word-spacing:17.875200pt;}
.ws157{word-spacing:18.084267pt;}
.ws49{word-spacing:18.136533pt;}
.ws6b{word-spacing:18.188800pt;}
.wse9{word-spacing:18.345600pt;}
.wsf4{word-spacing:18.763733pt;}
.ws10d{word-spacing:18.972800pt;}
.ws19{word-spacing:19.077333pt;}
.ws113{word-spacing:19.181867pt;}
.ws115{word-spacing:19.338667pt;}
.ws97{word-spacing:19.443200pt;}
.ws11e{word-spacing:19.547733pt;}
.ws5f{word-spacing:20.384000pt;}
.ws13a{word-spacing:20.436267pt;}
.ws147{word-spacing:20.749867pt;}
.wsdd{word-spacing:21.115733pt;}
.ws6d{word-spacing:21.272533pt;}
.wsb3{word-spacing:21.324800pt;}
.ws51{word-spacing:21.429333pt;}
.wsf0{word-spacing:21.690667pt;}
.wsac{word-spacing:22.056533pt;}
.ws123{word-spacing:22.108800pt;}
.ws103{word-spacing:22.474667pt;}
.ws158{word-spacing:22.526933pt;}
.ws74{word-spacing:22.683733pt;}
.ws48{word-spacing:23.154133pt;}
.wsea{word-spacing:23.310933pt;}
.ws10a{word-spacing:23.624533pt;}
.ws31{word-spacing:24.042667pt;}
.wsed{word-spacing:24.147200pt;}
.ws120{word-spacing:26.760533pt;}
.ws114{word-spacing:27.492267pt;}
.ws63{word-spacing:35.750400pt;}
._3{margin-left:-10.384000pt;}
._16{margin-left:-8.760000pt;}
._d{margin-left:-7.534187pt;}
._12{margin-left:-6.115200pt;}
._8{margin-left:-4.694187pt;}
._4{margin-left:-3.474133pt;}
._5{margin-left:-2.519467pt;}
._0{margin-left:-1.288533pt;}
._1{width:0.972800pt;}
._6{width:1.968000pt;}
._b{width:3.208533pt;}
._a{width:4.866027pt;}
._c{width:6.096427pt;}
._11{width:8.101333pt;}
._13{width:9.319147pt;}
._9{width:10.525867pt;}
._10{width:12.256533pt;}
._7{width:14.948267pt;}
._e{width:16.641056pt;}
._f{width:21.925226pt;}
._2{width:34.215978pt;}
._18{width:47.240000pt;}
._17{width:50.827733pt;}
._1a{width:86.200000pt;}
._1c{width:92.000000pt;}
._15{width:93.520000pt;}
._19{width:101.240000pt;}
._1b{width:111.280000pt;}
._14{width:118.440000pt;}
.fse{font-size:28.000000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs9{font-size:41.066666pt;}
.fs5{font-size:42.666667pt;}
.fsf{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.293333pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.374939pt;}
.y61{bottom:23.262939pt;}
.y5{bottom:59.133337pt;}
.y5f{bottom:67.374933pt;}
.y5e{bottom:78.042933pt;}
.y4{bottom:86.333337pt;}
.y5d{bottom:88.710933pt;}
.y2dc{bottom:89.477336pt;}
.y3a0{bottom:89.638006pt;}
.y11b{bottom:94.786929pt;}
.yfe{bottom:94.793329pt;}
.y194{bottom:95.767069pt;}
.y14d{bottom:95.773469pt;}
.y1d2{bottom:95.779869pt;}
.y29a{bottom:95.786269pt;}
.y2b1{bottom:95.869449pt;}
.y26a{bottom:96.730662pt;}
.y215{bottom:99.249996pt;}
.y5c{bottom:99.378933pt;}
.y314{bottom:99.637980pt;}
.y232{bottom:99.910262pt;}
.y2db{bottom:101.477336pt;}
.y39f{bottom:101.638006pt;}
.y5b{bottom:110.046933pt;}
.y269{bottom:110.063995pt;}
.y11a{bottom:110.780529pt;}
.yfd{bottom:110.786929pt;}
.yd0{bottom:110.812529pt;}
.y9f{bottom:110.831729pt;}
.y313{bottom:111.637980pt;}
.y14c{bottom:111.767069pt;}
.y1d1{bottom:111.773469pt;}
.y193{bottom:111.779869pt;}
.y286{bottom:111.792669pt;}
.y1bc{bottom:111.799069pt;}
.y2b0{bottom:111.863049pt;}
.y2da{bottom:113.477336pt;}
.y39e{bottom:113.638006pt;}
.y359{bottom:113.638021pt;}
.y214{bottom:115.243596pt;}
.y231{bottom:115.903862pt;}
.y5a{bottom:120.714933pt;}
.y268{bottom:123.397329pt;}
.y312{bottom:123.637980pt;}
.y22{bottom:123.790666pt;}
.y2d9{bottom:125.477336pt;}
.y39d{bottom:125.638006pt;}
.y358{bottom:125.638021pt;}
.y119{bottom:126.774129pt;}
.yfc{bottom:126.780529pt;}
.ycf{bottom:126.806129pt;}
.y9e{bottom:126.825329pt;}
.y14b{bottom:127.767069pt;}
.y192{bottom:127.773469pt;}
.y285{bottom:127.786269pt;}
.y1bb{bottom:127.792669pt;}
.y179{bottom:127.818269pt;}
.y2af{bottom:127.856649pt;}
.y213{bottom:131.237196pt;}
.y59{bottom:131.382933pt;}
.y230{bottom:131.897462pt;}
.y311{bottom:135.637980pt;}
.y267{bottom:136.730662pt;}
.y2d8{bottom:137.477336pt;}
.y39c{bottom:137.638006pt;}
.y357{bottom:137.638021pt;}
.yfb{bottom:142.774129pt;}
.y118{bottom:142.793329pt;}
.yce{bottom:142.799729pt;}
.y9d{bottom:142.818929pt;}
.y191{bottom:143.767069pt;}
.y1f5{bottom:143.779869pt;}
.y1ba{bottom:143.786269pt;}
.y14a{bottom:143.805469pt;}
.y178{bottom:143.811869pt;}
.y2ae{bottom:143.850249pt;}
.y212{bottom:147.230796pt;}
.y310{bottom:147.637980pt;}
.y22f{bottom:147.891062pt;}
.y2d7{bottom:149.477336pt;}
.y39b{bottom:149.638006pt;}
.y356{bottom:149.638021pt;}
.yfa{bottom:158.780529pt;}
.y117{bottom:158.786929pt;}
.ycd{bottom:158.793329pt;}
.y9c{bottom:158.812529pt;}
.y30f{bottom:159.637980pt;}
.y190{bottom:159.767069pt;}
.y1f4{bottom:159.773469pt;}
.y1b9{bottom:159.779869pt;}
.y299{bottom:159.786269pt;}
.y149{bottom:159.799069pt;}
.y177{bottom:159.805469pt;}
.y2ad{bottom:159.843849pt;}
.y2d6{bottom:161.477336pt;}
.y39a{bottom:161.638006pt;}
.y355{bottom:161.638021pt;}
.y211{bottom:163.224396pt;}
.y22e{bottom:163.980551pt;}
.y30e{bottom:171.637980pt;}
.y2d5{bottom:173.477336pt;}
.y399{bottom:173.638006pt;}
.y354{bottom:173.638021pt;}
.y57{bottom:173.920797pt;}
.yf9{bottom:174.774129pt;}
.y116{bottom:174.780529pt;}
.ycc{bottom:174.786929pt;}
.y9b{bottom:174.806129pt;}
.y19{bottom:175.052000pt;}
.y1f3{bottom:175.767069pt;}
.y1b8{bottom:175.773469pt;}
.y298{bottom:175.779869pt;}
.y148{bottom:175.792669pt;}
.y176{bottom:175.799069pt;}
.y2ac{bottom:175.837449pt;}
.y69{bottom:177.691203pt;}
.y210{bottom:179.224406pt;}
.y22d{bottom:179.974151pt;}
.y30d{bottom:183.637980pt;}
.y398{bottom:185.638006pt;}
.y353{bottom:185.638021pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y56{bottom:189.927197pt;}
.y115{bottom:190.774129pt;}
.ycb{bottom:190.780529pt;}
.yf8{bottom:190.786929pt;}
.y9a{bottom:190.799729pt;}
.y1b7{bottom:191.767069pt;}
.y1f2{bottom:191.773469pt;}
.y147{bottom:191.786269pt;}
.y175{bottom:191.792669pt;}
.y2ab{bottom:191.831049pt;}
.y68{bottom:193.691203pt;}
.y20f{bottom:195.243606pt;}
.y30c{bottom:195.637980pt;}
.y22c{bottom:195.967751pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y397{bottom:197.638006pt;}
.y352{bottom:197.638021pt;}
.y67{bottom:201.691203pt;}
.y55{bottom:205.920797pt;}
.yca{bottom:206.774129pt;}
.yf7{bottom:206.780529pt;}
.y99{bottom:206.793329pt;}
.y30b{bottom:207.637980pt;}
.y1b6{bottom:207.767069pt;}
.y146{bottom:207.779869pt;}
.y174{bottom:207.786269pt;}
.y1d0{bottom:207.799069pt;}
.y2aa{bottom:207.824649pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y396{bottom:209.638006pt;}
.y351{bottom:209.638021pt;}
.y20e{bottom:211.237206pt;}
.y22b{bottom:211.961351pt;}
.y2d4{bottom:213.509336pt;}
.y66{bottom:217.691203pt;}
.y30a{bottom:219.637980pt;}
.y395{bottom:221.638006pt;}
.y350{bottom:221.638021pt;}
.y54{bottom:221.927197pt;}
.yf6{bottom:222.774129pt;}
.y98{bottom:222.786929pt;}
.yc9{bottom:222.799729pt;}
.y284{bottom:223.767069pt;}
.y145{bottom:223.773469pt;}
.y173{bottom:223.779869pt;}
.y1cf{bottom:223.792669pt;}
.y1f1{bottom:223.799069pt;}
.y2a9{bottom:223.818249pt;}
.y1b5{bottom:223.856649pt;}
.y65{bottom:225.691203pt;}
.y20d{bottom:227.230806pt;}
.y22a{bottom:227.954951pt;}
.y2d3{bottom:229.502936pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y309{bottom:231.637980pt;}
.y394{bottom:233.638006pt;}
.y34f{bottom:233.638021pt;}
.y64{bottom:237.691203pt;}
.y53{bottom:237.920797pt;}
.y97{bottom:238.780529pt;}
.yc8{bottom:238.793329pt;}
.y144{bottom:239.767069pt;}
.y172{bottom:239.773469pt;}
.y1ce{bottom:239.786269pt;}
.y1f0{bottom:239.792669pt;}
.y2a8{bottom:239.811849pt;}
.y1b4{bottom:239.850249pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y20c{bottom:243.224406pt;}
.y308{bottom:243.637980pt;}
.y229{bottom:243.948551pt;}
.y2d2{bottom:245.496536pt;}
.y393{bottom:245.638006pt;}
.y34e{bottom:245.638021pt;}
.y63{bottom:249.691203pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y52{bottom:253.920797pt;}
.y96{bottom:254.774129pt;}
.yc7{bottom:254.786929pt;}
.y307{bottom:255.637980pt;}
.y171{bottom:255.767069pt;}
.y1cd{bottom:255.779869pt;}
.y1ef{bottom:255.786269pt;}
.y143{bottom:255.792669pt;}
.y2a7{bottom:255.805449pt;}
.y1b3{bottom:255.843849pt;}
.y392{bottom:257.638006pt;}
.y34d{bottom:257.638021pt;}
.y20b{bottom:259.224264pt;}
.y228{bottom:259.942151pt;}
.y2d1{bottom:261.490136pt;}
.y306{bottom:267.637980pt;}
.y391{bottom:269.638006pt;}
.y34c{bottom:269.638021pt;}
.y51{bottom:269.972017pt;}
.yf5{bottom:270.774129pt;}
.yc6{bottom:270.780529pt;}
.y95{bottom:270.831729pt;}
.y27a{bottom:271.767069pt;}
.y18f{bottom:271.773469pt;}
.y1ee{bottom:271.779869pt;}
.y142{bottom:271.786269pt;}
.y297{bottom:271.792669pt;}
.y2a6{bottom:271.799049pt;}
.y170{bottom:271.811849pt;}
.y1b2{bottom:271.837449pt;}
.y20a{bottom:275.228531pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y227{bottom:275.935751pt;}
.y2d0{bottom:277.483736pt;}
.y305{bottom:279.637980pt;}
.y390{bottom:281.638006pt;}
.y34b{bottom:281.638021pt;}
.y43{bottom:285.243728pt;}
.y50{bottom:285.965617pt;}
.yc5{bottom:286.774129pt;}
.y114{bottom:286.780529pt;}
.y94{bottom:286.825329pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y18e{bottom:287.767069pt;}
.y1ed{bottom:287.773469pt;}
.y141{bottom:287.779869pt;}
.y296{bottom:287.786269pt;}
.y2a5{bottom:287.792649pt;}
.y16f{bottom:287.805449pt;}
.y1b1{bottom:287.831049pt;}
.y209{bottom:291.224264pt;}
.y304{bottom:291.637980pt;}
.y226{bottom:291.929351pt;}
.y2cf{bottom:293.477336pt;}
.y38f{bottom:293.638006pt;}
.y34a{bottom:293.638021pt;}
.y42{bottom:301.237328pt;}
.y4f{bottom:301.959217pt;}
.yc4{bottom:302.774129pt;}
.yf4{bottom:302.799729pt;}
.y93{bottom:302.818929pt;}
.y303{bottom:303.637980pt;}
.y1ec{bottom:303.767069pt;}
.y140{bottom:303.773469pt;}
.y295{bottom:303.779869pt;}
.y18d{bottom:303.786249pt;}
.y1cc{bottom:303.792649pt;}
.y16e{bottom:303.799049pt;}
.y1b0{bottom:303.824649pt;}
.y38e{bottom:305.638006pt;}
.y349{bottom:305.638021pt;}
.y225{bottom:307.922951pt;}
.y10{bottom:309.452000pt;}
.y2ce{bottom:309.477336pt;}
.y302{bottom:315.637980pt;}
.y41{bottom:317.230928pt;}
.y38d{bottom:317.638006pt;}
.y348{bottom:317.638021pt;}
.y4e{bottom:317.952817pt;}
.yf3{bottom:318.793329pt;}
.y92{bottom:318.812529pt;}
.yc3{bottom:318.825329pt;}
.y113{bottom:318.838129pt;}
.y13f{bottom:319.767069pt;}
.y294{bottom:319.773469pt;}
.y18c{bottom:319.779849pt;}
.y1cb{bottom:319.786249pt;}
.y16d{bottom:319.792649pt;}
.y1af{bottom:319.818249pt;}
.y224{bottom:323.916551pt;}
.y2cd{bottom:325.502936pt;}
.y301{bottom:327.637980pt;}
.y38c{bottom:329.638006pt;}
.y347{bottom:329.638021pt;}
.y40{bottom:333.224528pt;}
.y4d{bottom:333.946417pt;}
.yf2{bottom:334.786929pt;}
.y91{bottom:334.806129pt;}
.yc2{bottom:334.818929pt;}
.y112{bottom:334.831729pt;}
.y1eb{bottom:335.767069pt;}
.y13e{bottom:335.773449pt;}
.y1ca{bottom:335.779849pt;}
.y16c{bottom:335.786249pt;}
.y1ae{bottom:335.811849pt;}
.y300{bottom:339.637980pt;}
.y208{bottom:339.910151pt;}
.y2cc{bottom:341.496536pt;}
.y38b{bottom:341.638006pt;}
.y346{bottom:341.638021pt;}
.yf{bottom:343.809333pt;}
.y3f{bottom:349.262928pt;}
.y4c{bottom:349.940017pt;}
.yf1{bottom:350.780529pt;}
.y90{bottom:350.799729pt;}
.yc1{bottom:350.812529pt;}
.y111{bottom:350.825329pt;}
.y2ff{bottom:351.637980pt;}
.y13d{bottom:351.767049pt;}
.y1c9{bottom:351.773449pt;}
.y16b{bottom:351.779849pt;}
.y293{bottom:351.799049pt;}
.y1ad{bottom:351.805449pt;}
.y38a{bottom:353.638006pt;}
.y345{bottom:353.638021pt;}
.y207{bottom:355.903751pt;}
.y2cb{bottom:357.490136pt;}
.ye{bottom:362.706666pt;}
.y2fe{bottom:363.637980pt;}
.y3e{bottom:365.256528pt;}
.y389{bottom:365.638006pt;}
.y344{bottom:365.638021pt;}
.y4b{bottom:365.933617pt;}
.yf0{bottom:366.774129pt;}
.y8f{bottom:366.793329pt;}
.yc0{bottom:366.806129pt;}
.y110{bottom:366.818929pt;}
.y13c{bottom:367.767049pt;}
.y16a{bottom:367.773449pt;}
.y18b{bottom:367.779849pt;}
.y292{bottom:367.792649pt;}
.y1ac{bottom:367.799049pt;}
.y279{bottom:367.805449pt;}
.y206{bottom:371.897351pt;}
.y2ca{bottom:373.483736pt;}
.y2fd{bottom:375.637980pt;}
.y388{bottom:377.638006pt;}
.y343{bottom:377.638021pt;}
.y3d{bottom:381.250128pt;}
.y4a{bottom:381.927217pt;}
.y8e{bottom:382.786929pt;}
.ybf{bottom:382.799729pt;}
.yef{bottom:382.812529pt;}
.y169{bottom:383.767049pt;}
.y18a{bottom:383.773449pt;}
.y291{bottom:383.786249pt;}
.y1ab{bottom:383.792649pt;}
.y278{bottom:383.799049pt;}
.y2fc{bottom:387.637980pt;}
.y205{bottom:387.890951pt;}
.y2c9{bottom:389.477336pt;}
.y387{bottom:389.638006pt;}
.y342{bottom:389.638021pt;}
.y3c{bottom:397.243728pt;}
.y49{bottom:397.920817pt;}
.y8d{bottom:398.780529pt;}
.ybe{bottom:398.793329pt;}
.yee{bottom:398.806129pt;}
.y2fb{bottom:399.637980pt;}
.y189{bottom:399.767049pt;}
.y13b{bottom:399.773449pt;}
.y290{bottom:399.779849pt;}
.y1aa{bottom:399.786249pt;}
.y277{bottom:399.792649pt;}
.y386{bottom:401.638006pt;}
.y341{bottom:401.638021pt;}
.y223{bottom:403.903751pt;}
.y204{bottom:403.910151pt;}
.y2c8{bottom:405.477336pt;}
.y2fa{bottom:411.637980pt;}
.y3b{bottom:413.237328pt;}
.y385{bottom:413.638006pt;}
.y340{bottom:413.638021pt;}
.y48{bottom:413.933617pt;}
.y8c{bottom:414.774129pt;}
.ybd{bottom:414.786929pt;}
.yed{bottom:414.799729pt;}
.y13a{bottom:415.767049pt;}
.y28f{bottom:415.773449pt;}
.y1a9{bottom:415.779849pt;}
.y1c8{bottom:415.786249pt;}
.y222{bottom:419.897351pt;}
.y203{bottom:419.903751pt;}
.y2c7{bottom:421.502936pt;}
.y2f9{bottom:423.637980pt;}
.y384{bottom:425.638006pt;}
.y33f{bottom:425.638021pt;}
.y3a{bottom:429.230928pt;}
.y47{bottom:429.927217pt;}
.ybc{bottom:430.780529pt;}
.yec{bottom:430.793329pt;}
.y8b{bottom:430.825329pt;}
.yd{bottom:430.990669pt;}
.y28e{bottom:431.767049pt;}
.y1a8{bottom:431.773449pt;}
.y139{bottom:431.779849pt;}
.y168{bottom:431.805449pt;}
.y1ea{bottom:431.863049pt;}
.y2f8{bottom:435.637980pt;}
.y221{bottom:435.890951pt;}
.y202{bottom:435.897351pt;}
.y2c6{bottom:437.496536pt;}
.y383{bottom:437.638006pt;}
.y33e{bottom:437.638021pt;}
.y39{bottom:445.224528pt;}
.y46{bottom:445.920817pt;}
.ybb{bottom:446.774129pt;}
.yeb{bottom:446.786929pt;}
.y8a{bottom:446.818929pt;}
.yc{bottom:446.990669pt;}
.y2f7{bottom:447.637980pt;}
.y1a7{bottom:447.767049pt;}
.y138{bottom:447.773449pt;}
.y2a4{bottom:447.786249pt;}
.y167{bottom:447.799049pt;}
.y1e9{bottom:447.856649pt;}
.y253{bottom:448.116548pt;}
.y382{bottom:449.638006pt;}
.y33d{bottom:449.638021pt;}
.y201{bottom:451.890951pt;}
.y2c5{bottom:453.490136pt;}
.y2f6{bottom:459.637980pt;}
.y38{bottom:461.224528pt;}
.y381{bottom:461.638006pt;}
.y33c{bottom:461.638021pt;}
.y45{bottom:461.944258pt;}
.yea{bottom:462.780529pt;}
.yba{bottom:462.793329pt;}
.y89{bottom:462.812529pt;}
.yb{bottom:462.990669pt;}
.y137{bottom:463.767049pt;}
.y283{bottom:463.779849pt;}
.y266{bottom:463.786249pt;}
.y166{bottom:463.792649pt;}
.y1e8{bottom:463.850249pt;}
.y252{bottom:464.110148pt;}
.y220{bottom:467.916551pt;}
.y200{bottom:467.922951pt;}
.y2c4{bottom:469.483736pt;}
.y2f5{bottom:471.637980pt;}
.y380{bottom:473.638006pt;}
.y33b{bottom:473.638021pt;}
.y37{bottom:477.224528pt;}
.y44{bottom:477.937858pt;}
.ye9{bottom:478.774129pt;}
.yb9{bottom:478.786929pt;}
.y88{bottom:478.806129pt;}
.ya{bottom:478.990666pt;}
.y136{bottom:479.767049pt;}
.y282{bottom:479.773449pt;}
.y265{bottom:479.779849pt;}
.y165{bottom:479.786249pt;}
.y188{bottom:479.792649pt;}
.y1e7{bottom:479.843849pt;}
.y251{bottom:480.110148pt;}
.y2f4{bottom:483.637980pt;}
.y21f{bottom:483.910151pt;}
.y1ff{bottom:483.916551pt;}
.y2c3{bottom:485.477336pt;}
.y37f{bottom:485.638006pt;}
.y33a{bottom:485.638021pt;}
.y3a3{bottom:489.637980pt;}
.y10f{bottom:494.774129pt;}
.yb8{bottom:494.780529pt;}
.ye8{bottom:494.786929pt;}
.y87{bottom:494.799729pt;}
.y9{bottom:494.990666pt;}
.y2f3{bottom:495.637980pt;}
.y281{bottom:495.767049pt;}
.y264{bottom:495.773449pt;}
.y164{bottom:495.779849pt;}
.y187{bottom:495.786249pt;}
.y1e6{bottom:495.837449pt;}
.y250{bottom:496.110148pt;}
.y37e{bottom:497.638006pt;}
.y339{bottom:497.638021pt;}
.y21e{bottom:499.903751pt;}
.y1fe{bottom:499.910151pt;}
.y2c2{bottom:501.490136pt;}
.y3a2{bottom:501.637980pt;}
.y2f2{bottom:507.637980pt;}
.y37d{bottom:509.638006pt;}
.y338{bottom:509.638021pt;}
.yb7{bottom:510.774129pt;}
.ye7{bottom:510.780529pt;}
.y86{bottom:510.793329pt;}
.y263{bottom:511.767049pt;}
.y163{bottom:511.773449pt;}
.y186{bottom:511.779849pt;}
.y135{bottom:511.799049pt;}
.y1c7{bottom:511.811849pt;}
.y1e5{bottom:511.831049pt;}
.y3a1{bottom:513.637980pt;}
.y21d{bottom:515.897351pt;}
.y1fd{bottom:515.903751pt;}
.y2c1{bottom:517.483736pt;}
.y2f1{bottom:519.637980pt;}
.y37c{bottom:521.638006pt;}
.y337{bottom:521.638021pt;}
.y36{bottom:522.857829pt;}
.ye6{bottom:526.774129pt;}
.y85{bottom:526.786929pt;}
.yb6{bottom:526.793329pt;}
.y162{bottom:527.767049pt;}
.y185{bottom:527.773449pt;}
.y134{bottom:527.792649pt;}
.y1c6{bottom:527.805449pt;}
.y1e4{bottom:527.824649pt;}
.y24f{bottom:528.116548pt;}
.y2f0{bottom:531.637980pt;}
.y21c{bottom:531.890951pt;}
.y1fc{bottom:531.897351pt;}
.y2c0{bottom:533.477336pt;}
.y37b{bottom:533.638006pt;}
.y336{bottom:533.638021pt;}
.y84{bottom:542.780529pt;}
.yb5{bottom:542.786929pt;}
.y35{bottom:542.857829pt;}
.ye5{bottom:542.870170pt;}
.y2ef{bottom:543.637980pt;}
.y184{bottom:543.767049pt;}
.y1a6{bottom:543.773449pt;}
.y133{bottom:543.786249pt;}
.y161{bottom:543.799049pt;}
.y2a3{bottom:543.805449pt;}
.y28d{bottom:543.811849pt;}
.y1e3{bottom:543.818249pt;}
.y24e{bottom:544.110148pt;}
.y37a{bottom:545.638006pt;}
.y335{bottom:545.638021pt;}
.y1fb{bottom:547.890951pt;}
.y21b{bottom:547.946258pt;}
.y2bf{bottom:549.490136pt;}
.y379{bottom:557.638006pt;}
.y334{bottom:557.638021pt;}
.y83{bottom:558.774129pt;}
.yb4{bottom:558.780529pt;}
.y34{bottom:558.857829pt;}
.ye4{bottom:558.863770pt;}
.y1a5{bottom:559.767049pt;}
.y276{bottom:559.773449pt;}
.y132{bottom:559.779849pt;}
.y160{bottom:559.792649pt;}
.y2a2{bottom:559.799049pt;}
.y28c{bottom:559.805449pt;}
.y1e2{bottom:559.811849pt;}
.y24d{bottom:560.129348pt;}
.y1fa{bottom:563.897351pt;}
.y21a{bottom:563.939858pt;}
.y2be{bottom:565.483736pt;}
.y378{bottom:569.638006pt;}
.y333{bottom:569.638021pt;}
.y8{bottom:573.786667pt;}
.yb3{bottom:574.774129pt;}
.y82{bottom:574.780529pt;}
.ye3{bottom:574.857370pt;}
.y33{bottom:574.857829pt;}
.y275{bottom:575.767049pt;}
.y131{bottom:575.773449pt;}
.y1a4{bottom:575.779849pt;}
.y15f{bottom:575.786249pt;}
.y2a1{bottom:575.792649pt;}
.y28b{bottom:575.799049pt;}
.y1e1{bottom:575.805449pt;}
.y280{bottom:575.824690pt;}
.y24c{bottom:576.122948pt;}
.y1f9{bottom:579.890951pt;}
.y219{bottom:579.933458pt;}
.y2bd{bottom:581.477336pt;}
.y377{bottom:581.638006pt;}
.y332{bottom:581.638021pt;}
.y81{bottom:590.774129pt;}
.yb2{bottom:590.793329pt;}
.y10e{bottom:590.806129pt;}
.ye2{bottom:590.850970pt;}
.y32{bottom:590.857829pt;}
.y130{bottom:591.767049pt;}
.y1a3{bottom:591.773449pt;}
.y15e{bottom:591.779849pt;}
.y274{bottom:591.786249pt;}
.y28a{bottom:591.792649pt;}
.y1e0{bottom:591.799049pt;}
.y27f{bottom:591.818290pt;}
.y24b{bottom:592.116548pt;}
.y7{bottom:592.685334pt;}
.y376{bottom:593.638006pt;}
.y331{bottom:593.638021pt;}
.y1f8{bottom:595.903751pt;}
.y218{bottom:595.927058pt;}
.y2bc{bottom:597.522095pt;}
.y375{bottom:605.638006pt;}
.y330{bottom:605.638021pt;}
.y80{bottom:606.786929pt;}
.y10d{bottom:606.799729pt;}
.ye1{bottom:606.844570pt;}
.y31{bottom:606.857829pt;}
.y1a2{bottom:607.767049pt;}
.y15d{bottom:607.773449pt;}
.y12f{bottom:607.779849pt;}
.y183{bottom:607.786249pt;}
.y1df{bottom:607.792649pt;}
.y262{bottom:607.799090pt;}
.y27e{bottom:607.811890pt;}
.y24a{bottom:608.110148pt;}
.y1f7{bottom:611.897351pt;}
.y217{bottom:611.920658pt;}
.y2bb{bottom:613.515695pt;}
.y374{bottom:617.638006pt;}
.y32f{bottom:617.638021pt;}
.y2ee{bottom:621.637980pt;}
.y7f{bottom:622.780529pt;}
.y10c{bottom:622.793329pt;}
.ye0{bottom:622.838170pt;}
.y30{bottom:622.857829pt;}
.y15c{bottom:623.767049pt;}
.y12e{bottom:623.773449pt;}
.y182{bottom:623.779849pt;}
.y1de{bottom:623.786249pt;}
.y261{bottom:623.792690pt;}
.y1a1{bottom:623.799090pt;}
.y27d{bottom:623.805490pt;}
.y249{bottom:624.161307pt;}
.y1f6{bottom:627.890951pt;}
.y216{bottom:627.914258pt;}
.y2ba{bottom:629.509295pt;}
.y373{bottom:629.638006pt;}
.y32e{bottom:629.638021pt;}
.y7e{bottom:638.774129pt;}
.y10b{bottom:638.786929pt;}
.ydf{bottom:638.831770pt;}
.y2f{bottom:638.857829pt;}
.y12d{bottom:639.767049pt;}
.y15b{bottom:639.773449pt;}
.y1dd{bottom:639.779849pt;}
.y260{bottom:639.786290pt;}
.y1a0{bottom:639.792690pt;}
.y27c{bottom:639.799090pt;}
.y248{bottom:640.154907pt;}
.y372{bottom:641.638006pt;}
.y32d{bottom:641.638021pt;}
.y2b9{bottom:645.502895pt;}
.y6{bottom:645.598667pt;}
.y371{bottom:653.638006pt;}
.y32c{bottom:653.638021pt;}
.yb1{bottom:654.774129pt;}
.y10a{bottom:654.780529pt;}
.y7d{bottom:654.786970pt;}
.yde{bottom:654.825370pt;}
.y2e{bottom:654.857829pt;}
.y15a{bottom:655.767049pt;}
.y1dc{bottom:655.773449pt;}
.y12c{bottom:655.779890pt;}
.y19f{bottom:655.786290pt;}
.y27b{bottom:655.792690pt;}
.y247{bottom:656.148507pt;}
.y2ed{bottom:657.637980pt;}
.y2b8{bottom:661.496495pt;}
.y370{bottom:665.638006pt;}
.y32b{bottom:665.638021pt;}
.y3{bottom:668.977329pt;}
.y2ec{bottom:669.637980pt;}
.y109{bottom:670.774129pt;}
.y7c{bottom:670.780570pt;}
.yb0{bottom:670.799770pt;}
.ydd{bottom:670.818970pt;}
.y2d{bottom:670.857829pt;}
.y1db{bottom:671.767049pt;}
.y12b{bottom:671.773490pt;}
.y181{bottom:671.779890pt;}
.y1c5{bottom:671.786290pt;}
.y246{bottom:672.142107pt;}
.y235{bottom:673.837240pt;}
.y2b7{bottom:677.490095pt;}
.y36f{bottom:677.638006pt;}
.y32a{bottom:677.638021pt;}
.y7b{bottom:686.774170pt;}
.y108{bottom:686.786970pt;}
.yaf{bottom:686.793370pt;}
.ydc{bottom:686.812570pt;}
.y2c{bottom:686.857829pt;}
.y234{bottom:687.170573pt;}
.y12a{bottom:687.767090pt;}
.y180{bottom:687.773490pt;}
.y1c4{bottom:687.779890pt;}
.y2a0{bottom:687.792690pt;}
.y245{bottom:688.135707pt;}
.y36e{bottom:689.638006pt;}
.y329{bottom:689.638021pt;}
.y2b6{bottom:693.483695pt;}
.y2eb{bottom:693.638021pt;}
.y233{bottom:700.503906pt;}
.y36d{bottom:701.638006pt;}
.y328{bottom:701.638021pt;}
.y7a{bottom:702.774170pt;}
.y107{bottom:702.780570pt;}
.yae{bottom:702.786970pt;}
.ydb{bottom:702.806170pt;}
.y2b{bottom:702.857829pt;}
.y159{bottom:703.767090pt;}
.y1c3{bottom:703.773490pt;}
.y129{bottom:703.786290pt;}
.y25f{bottom:703.805490pt;}
.y244{bottom:704.129307pt;}
.y2b5{bottom:709.477295pt;}
.y36c{bottom:713.638006pt;}
.y327{bottom:713.638021pt;}
.y106{bottom:718.774170pt;}
.yad{bottom:718.780570pt;}
.yda{bottom:718.799770pt;}
.y79{bottom:718.806170pt;}
.y2a{bottom:718.857829pt;}
.y17f{bottom:719.767090pt;}
.y273{bottom:719.773490pt;}
.y128{bottom:719.779890pt;}
.y289{bottom:719.786290pt;}
.y25e{bottom:719.799090pt;}
.y19e{bottom:719.824690pt;}
.y243{bottom:720.122907pt;}
.y2b4{bottom:725.483695pt;}
.y2ea{bottom:725.637324pt;}
.y36b{bottom:725.638006pt;}
.y326{bottom:725.638021pt;}
.yac{bottom:734.774170pt;}
.yd9{bottom:734.793370pt;}
.y78{bottom:734.799770pt;}
.y158{bottom:735.767090pt;}
.y127{bottom:735.773490pt;}
.y288{bottom:735.779890pt;}
.y25d{bottom:735.792690pt;}
.y19d{bottom:735.818290pt;}
.y242{bottom:736.116507pt;}
.y2e9{bottom:737.637324pt;}
.y36a{bottom:737.638006pt;}
.y325{bottom:737.638021pt;}
.y29{bottom:738.857829pt;}
.y2b3{bottom:741.477295pt;}
.y369{bottom:749.638006pt;}
.y324{bottom:749.638021pt;}
.yd8{bottom:750.786970pt;}
.y77{bottom:750.793370pt;}
.yab{bottom:750.812570pt;}
.y126{bottom:751.767090pt;}
.y287{bottom:751.773490pt;}
.y1da{bottom:751.779890pt;}
.y25c{bottom:751.786290pt;}
.y19c{bottom:751.811890pt;}
.y272{bottom:751.837490pt;}
.y241{bottom:752.110107pt;}
.y2b2{bottom:757.477295pt;}
.y2e8{bottom:761.637324pt;}
.y368{bottom:761.638006pt;}
.y323{bottom:761.638021pt;}
.yd7{bottom:766.780570pt;}
.y76{bottom:766.786970pt;}
.yaa{bottom:766.806170pt;}
.y1c2{bottom:767.767090pt;}
.y125{bottom:767.773490pt;}
.y157{bottom:767.779890pt;}
.y19b{bottom:767.805490pt;}
.y271{bottom:767.831090pt;}
.y240{bottom:768.110107pt;}
.y2e7{bottom:773.637324pt;}
.y367{bottom:773.638006pt;}
.y322{bottom:773.638021pt;}
.y2{bottom:781.661334pt;}
.yd6{bottom:782.774170pt;}
.y75{bottom:782.780570pt;}
.ya9{bottom:782.799770pt;}
.y124{bottom:783.767090pt;}
.y156{bottom:783.773490pt;}
.y19a{bottom:783.799090pt;}
.y270{bottom:783.824690pt;}
.y23f{bottom:784.116507pt;}
.y366{bottom:785.638006pt;}
.y321{bottom:785.638021pt;}
.y2e6{bottom:797.637324pt;}
.y365{bottom:797.638006pt;}
.y320{bottom:797.638021pt;}
.y74{bottom:798.774170pt;}
.ya8{bottom:798.793370pt;}
.y105{bottom:798.799770pt;}
.y123{bottom:799.767090pt;}
.y17e{bottom:799.773490pt;}
.y1d9{bottom:799.779890pt;}
.y199{bottom:799.792690pt;}
.y1c1{bottom:799.799090pt;}
.y26f{bottom:799.818290pt;}
.y23e{bottom:800.110107pt;}
.y28{bottom:803.157878pt;}
.y2e5{bottom:809.637324pt;}
.y364{bottom:809.638006pt;}
.y31f{bottom:809.638021pt;}
.ya7{bottom:814.786970pt;}
.y104{bottom:814.793370pt;}
.y73{bottom:814.818970pt;}
.y17d{bottom:815.767090pt;}
.y1d8{bottom:815.773490pt;}
.y29f{bottom:815.779890pt;}
.y198{bottom:815.786290pt;}
.y1c0{bottom:815.792690pt;}
.y26e{bottom:815.811890pt;}
.y155{bottom:815.812136pt;}
.y25b{bottom:815.812548pt;}
.y23d{bottom:816.110107pt;}
.y2e4{bottom:821.637324pt;}
.y363{bottom:821.638006pt;}
.y31e{bottom:821.638021pt;}
.ya6{bottom:830.780570pt;}
.y103{bottom:830.786970pt;}
.y72{bottom:830.812570pt;}
.y1d7{bottom:831.767090pt;}
.y29e{bottom:831.773490pt;}
.y122{bottom:831.779890pt;}
.y1bf{bottom:831.786290pt;}
.y26d{bottom:831.805490pt;}
.y154{bottom:831.805736pt;}
.y25a{bottom:831.806148pt;}
.y23c{bottom:832.142107pt;}
.y2e3{bottom:833.637324pt;}
.y362{bottom:833.638006pt;}
.y31d{bottom:833.638021pt;}
.y27{bottom:835.169358pt;}
.y2e2{bottom:845.637324pt;}
.y361{bottom:845.638006pt;}
.y31c{bottom:845.638021pt;}
.ya5{bottom:846.774170pt;}
.y102{bottom:846.780570pt;}
.y71{bottom:846.806170pt;}
.y1d6{bottom:847.767090pt;}
.y121{bottom:847.773490pt;}
.y1be{bottom:847.779890pt;}
.y26c{bottom:847.799090pt;}
.y153{bottom:847.799336pt;}
.y259{bottom:847.799748pt;}
.y23b{bottom:848.135707pt;}
.y2e1{bottom:857.637324pt;}
.y360{bottom:857.638006pt;}
.y31b{bottom:857.638021pt;}
.y1{bottom:859.312000pt;}
.y101{bottom:862.774170pt;}
.yd5{bottom:862.778437pt;}
.y70{bottom:862.799770pt;}
.ya4{bottom:862.857613pt;}
.y120{bottom:863.767090pt;}
.y1bd{bottom:863.773490pt;}
.y29d{bottom:863.779890pt;}
.y26b{bottom:863.792690pt;}
.y152{bottom:863.792936pt;}
.y258{bottom:863.793348pt;}
.y23a{bottom:864.129307pt;}
.y35f{bottom:869.638006pt;}
.y31a{bottom:869.638021pt;}
.y26{bottom:869.825358pt;}
.yd4{bottom:878.774170pt;}
.y6f{bottom:878.793370pt;}
.ya3{bottom:878.851213pt;}
.y197{bottom:879.767090pt;}
.y11f{bottom:879.773490pt;}
.y17c{bottom:879.786290pt;}
.y151{bottom:879.786536pt;}
.y257{bottom:879.786948pt;}
.y239{bottom:880.122907pt;}
.y2e0{bottom:881.637324pt;}
.y35e{bottom:881.638006pt;}
.y319{bottom:881.638021pt;}
.y2df{bottom:893.637324pt;}
.y35d{bottom:893.638006pt;}
.y318{bottom:893.638021pt;}
.y6e{bottom:894.786970pt;}
.ya2{bottom:894.844813pt;}
.y11e{bottom:895.767090pt;}
.y17b{bottom:895.779890pt;}
.y150{bottom:895.780136pt;}
.y256{bottom:895.780548pt;}
.y1d5{bottom:895.786536pt;}
.y238{bottom:896.116507pt;}
.y35c{bottom:905.638006pt;}
.y317{bottom:905.638021pt;}
.y100{bottom:910.774170pt;}
.y6d{bottom:910.780570pt;}
.ya1{bottom:910.838413pt;}
.y11d{bottom:911.767090pt;}
.y196{bottom:911.767336pt;}
.y17a{bottom:911.773490pt;}
.y14f{bottom:911.773736pt;}
.y255{bottom:911.774148pt;}
.y1d4{bottom:911.780136pt;}
.y29c{bottom:911.786536pt;}
.y237{bottom:912.110107pt;}
.y2de{bottom:917.637324pt;}
.y35b{bottom:917.638006pt;}
.y316{bottom:917.638021pt;}
.y25{bottom:918.544515pt;}
.y58{bottom:920.666829pt;}
.y6c{bottom:926.774170pt;}
.yff{bottom:926.787196pt;}
.ya0{bottom:926.832013pt;}
.y195{bottom:927.760936pt;}
.y11c{bottom:927.767090pt;}
.y14e{bottom:927.767336pt;}
.y254{bottom:927.767748pt;}
.y1d3{bottom:927.773736pt;}
.y29b{bottom:927.780136pt;}
.y236{bottom:928.110107pt;}
.y2dd{bottom:929.637324pt;}
.y35a{bottom:929.638006pt;}
.y315{bottom:929.638021pt;}
.y60{bottom:974.444010pt;}
.y24{bottom:988.708515pt;}
.yd1{bottom:1001.355225pt;}
.y6a{bottom:1001.355306pt;}
.yd3{bottom:1001.561768pt;}
.y23{bottom:1001.711182pt;}
.yd2{bottom:1002.044515pt;}
.y6b{bottom:1002.048639pt;}
.h19{height:24.724000pt;}
.h7{height:28.560000pt;}
.h14{height:32.965333pt;}
.h22{height:34.520000pt;}
.h15{height:35.266667pt;}
.h18{height:35.320000pt;}
.h13{height:36.922667pt;}
.h1e{height:37.674667pt;}
.h21{height:38.080000pt;}
.h20{height:38.920000pt;}
.hb{height:40.618667pt;}
.h1a{height:40.661333pt;}
.h6{height:40.800000pt;}
.ha{height:41.984000pt;}
.h1d{height:42.197333pt;}
.h3{height:42.840000pt;}
.h10{height:47.093333pt;}
.h1c{height:47.692799pt;}
.h1b{height:47.741866pt;}
.h2{height:48.960000pt;}
.h12{height:49.653333pt;}
.h11{height:51.893333pt;}
.h1f{height:53.834667pt;}
.hf{height:54.329067pt;}
.he{height:59.728337pt;}
.h16{height:63.111253pt;}
.h17{height:63.111821pt;}
.hc{height:68.570667pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.hd{height:121.856000pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:213.276000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:51.486938pt;}
.x5{left:75.496002pt;}
.x6{left:82.430532pt;}
.x7{left:84.162800pt;}
.xf{left:86.252935pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:102.920535pt;}
.x4{left:180.874667pt;}
.xb{left:240.726664pt;}
.x3{left:404.408000pt;}
.x8{left:406.304795pt;}
.x9{left:416.961594pt;}
.x11{left:433.629194pt;}
.xc{left:504.834676pt;}
.xa{left:617.715454pt;}
.x10{left:658.727458pt;}
.xe{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; }
  