
    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_6c82bd9f73814aa8e1e219f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e7469c5779a8f234dbba5f80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de2d2a61619c90fa9ba123d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c67f208b586fe0f51b158bf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_74cb0842703ab73d20670942.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_20f3874d0a7d00a293338d9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9de43eb2464a7b87db00cb3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fe50b90030ce3f66a480be8e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8a6af6401875a690feb75b03.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ae465f18288b1406505497b0.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_397fefa49ed7cf6bcfe706bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.554000;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_eef9b17478ac68a6f2919f91.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_04b93d7f0290965081e0181c.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:23.432765px;}
.v2{vertical-align:26.399780px;}
.v4{vertical-align:54.000000px;}
.ls5{letter-spacing:-1.050000px;}
.ls7{letter-spacing:-0.894960px;}
.ls9{letter-spacing:-0.823200px;}
.ls4{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.352800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000177px;}
.ls8{letter-spacing:0.000766px;}
.ls6{letter-spacing:0.745800px;}
.ls1{letter-spacing:5.460000px;}
.ls3{letter-spacing:38.305827px;}
.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;}
}
.ws3{word-spacing:-21.216000px;}
.ws0{word-spacing:-18.984000px;}
.ws9{word-spacing:-16.556760px;}
.wsb{word-spacing:-15.810960px;}
.wsa{word-spacing:-14.916000px;}
.ws9e{word-spacing:-13.818000px;}
.wscb{word-spacing:-12.994800px;}
.ws5{word-spacing:-12.483600px;}
.ws6{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.682000px;}
.ws10{word-spacing:-11.426400px;}
.wsc6{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.ws4{word-spacing:-10.117800px;}
.wsc{word-spacing:-9.855000px;}
.ws122{word-spacing:-9.315000px;}
.ws8{word-spacing:-8.148000px;}
.wsc4{word-spacing:-7.644000px;}
.ws139{word-spacing:-6.898500px;}
.wsd{word-spacing:-2.772000px;}
.wse{word-spacing:-2.310000px;}
.ws13a{word-spacing:-1.800000px;}
.wse1{word-spacing:-1.352400px;}
.wscc{word-spacing:-1.058400px;}
.wsfa{word-spacing:-0.999600px;}
.ws107{word-spacing:-0.823200px;}
.ws40{word-spacing:-0.764400px;}
.wsd3{word-spacing:-0.705600px;}
.wsa7{word-spacing:-0.646800px;}
.wsf8{word-spacing:-0.588000px;}
.wseb{word-spacing:-0.529200px;}
.ws56{word-spacing:-0.470400px;}
.ws131{word-spacing:-0.411600px;}
.ws4f{word-spacing:-0.352800px;}
.ws128{word-spacing:-0.294000px;}
.wsf7{word-spacing:-0.235200px;}
.wse7{word-spacing:-0.176400px;}
.ws11d{word-spacing:-0.117600px;}
.ws72{word-spacing:-0.058800px;}
.ws13b{word-spacing:-0.045000px;}
.ws1{word-spacing:0.000000px;}
.wse4{word-spacing:0.058800px;}
.ws6d{word-spacing:0.117600px;}
.ws22{word-spacing:0.176400px;}
.ws12c{word-spacing:0.235200px;}
.ws1f{word-spacing:0.294000px;}
.ws44{word-spacing:0.470400px;}
.ws88{word-spacing:0.529200px;}
.ws138{word-spacing:0.588000px;}
.wsd1{word-spacing:0.705600px;}
.ws97{word-spacing:0.764400px;}
.ws2f{word-spacing:0.823200px;}
.ws99{word-spacing:0.882000px;}
.ws11f{word-spacing:0.999600px;}
.wsea{word-spacing:1.058400px;}
.wsb0{word-spacing:1.117200px;}
.ws89{word-spacing:1.176000px;}
.ws51{word-spacing:1.234800px;}
.ws80{word-spacing:1.293600px;}
.wsc9{word-spacing:1.352400px;}
.wsf2{word-spacing:1.411200px;}
.wsec{word-spacing:1.470000px;}
.ws2c{word-spacing:1.528800px;}
.ws60{word-spacing:1.587600px;}
.ws68{word-spacing:1.705200px;}
.ws4b{word-spacing:1.764000px;}
.ws8d{word-spacing:1.822800px;}
.ws127{word-spacing:1.881600px;}
.wsae{word-spacing:1.940400px;}
.ws3a{word-spacing:1.999200px;}
.wsb5{word-spacing:2.058000px;}
.ws58{word-spacing:2.116800px;}
.ws135{word-spacing:2.175600px;}
.wsc0{word-spacing:2.234400px;}
.wsb1{word-spacing:2.293200px;}
.ws2d{word-spacing:2.352000px;}
.ws74{word-spacing:2.410800px;}
.wsce{word-spacing:2.469600px;}
.ws21{word-spacing:2.528400px;}
.ws11c{word-spacing:2.587200px;}
.ws24{word-spacing:2.646000px;}
.wscf{word-spacing:2.704800px;}
.ws18{word-spacing:2.763600px;}
.ws20{word-spacing:2.822400px;}
.ws55{word-spacing:2.881200px;}
.ws32{word-spacing:2.998800px;}
.ws1a{word-spacing:3.057600px;}
.wsd8{word-spacing:3.116400px;}
.ws91{word-spacing:3.175200px;}
.ws103{word-spacing:3.234000px;}
.ws8a{word-spacing:3.292800px;}
.ws25{word-spacing:3.351600px;}
.ws39{word-spacing:3.410400px;}
.ws28{word-spacing:3.469200px;}
.ws57{word-spacing:3.528000px;}
.ws8c{word-spacing:3.586800px;}
.ws2e{word-spacing:3.645600px;}
.ws111{word-spacing:3.704400px;}
.ws6a{word-spacing:3.763200px;}
.ws84{word-spacing:3.822000px;}
.ws41{word-spacing:3.880800px;}
.ws53{word-spacing:3.939600px;}
.ws50{word-spacing:3.998400px;}
.ws1e{word-spacing:4.057200px;}
.ws70{word-spacing:4.116000px;}
.ws9a{word-spacing:4.174800px;}
.ws10e{word-spacing:4.233600px;}
.ws4d{word-spacing:4.292400px;}
.wsda{word-spacing:4.351200px;}
.ws14{word-spacing:4.410000px;}
.ws45{word-spacing:4.468800px;}
.ws10d{word-spacing:4.527600px;}
.ws7f{word-spacing:4.586400px;}
.ws102{word-spacing:4.645200px;}
.ws95{word-spacing:4.704000px;}
.ws112{word-spacing:4.762800px;}
.ws49{word-spacing:4.821600px;}
.ws8b{word-spacing:4.880400px;}
.ws109{word-spacing:4.939200px;}
.wsd5{word-spacing:4.998000px;}
.wsf6{word-spacing:5.056800px;}
.ws101{word-spacing:5.115600px;}
.ws5e{word-spacing:5.174400px;}
.wsdb{word-spacing:5.233200px;}
.ws5f{word-spacing:5.292000px;}
.wsc1{word-spacing:5.350800px;}
.ws93{word-spacing:5.409600px;}
.wsfd{word-spacing:5.468400px;}
.ws114{word-spacing:5.527200px;}
.ws6f{word-spacing:5.586000px;}
.ws7e{word-spacing:5.644800px;}
.ws31{word-spacing:5.703600px;}
.wsad{word-spacing:5.762400px;}
.wsc8{word-spacing:5.821200px;}
.ws46{word-spacing:5.880000px;}
.ws4e{word-spacing:5.938800px;}
.ws5c{word-spacing:5.997600px;}
.ws78{word-spacing:6.056400px;}
.wsa6{word-spacing:6.115200px;}
.wsa1{word-spacing:6.174000px;}
.ws69{word-spacing:6.232800px;}
.wsd0{word-spacing:6.291600px;}
.ws77{word-spacing:6.350400px;}
.wsbf{word-spacing:6.409200px;}
.ws96{word-spacing:6.468000px;}
.ws3e{word-spacing:6.526800px;}
.ws19{word-spacing:6.644400px;}
.wse2{word-spacing:6.703200px;}
.ws3c{word-spacing:6.762000px;}
.ws30{word-spacing:6.820800px;}
.ws3f{word-spacing:6.879600px;}
.ws82{word-spacing:6.938400px;}
.ws137{word-spacing:6.997200px;}
.ws66{word-spacing:7.056000px;}
.wse9{word-spacing:7.114800px;}
.ws65{word-spacing:7.173600px;}
.ws71{word-spacing:7.232400px;}
.ws1b{word-spacing:7.291200px;}
.ws12{word-spacing:7.350000px;}
.ws9b{word-spacing:7.408800px;}
.wsfb{word-spacing:7.467600px;}
.ws73{word-spacing:7.526400px;}
.ws36{word-spacing:7.585200px;}
.ws16{word-spacing:7.644000px;}
.ws98{word-spacing:7.702800px;}
.wsa4{word-spacing:7.761600px;}
.ws106{word-spacing:7.820400px;}
.ws4c{word-spacing:7.879200px;}
.wsa5{word-spacing:7.938000px;}
.wsb2{word-spacing:7.996800px;}
.wsb7{word-spacing:8.055600px;}
.wsaa{word-spacing:8.114400px;}
.ws9d{word-spacing:8.173200px;}
.wsaf{word-spacing:8.232000px;}
.ws6b{word-spacing:8.290800px;}
.wsa8{word-spacing:8.349600px;}
.ws117{word-spacing:8.408400px;}
.ws3d{word-spacing:8.467200px;}
.wsef{word-spacing:8.526000px;}
.ws8e{word-spacing:8.584800px;}
.ws5a{word-spacing:8.643600px;}
.ws10b{word-spacing:8.702400px;}
.ws2a{word-spacing:8.761200px;}
.ws76{word-spacing:8.820000px;}
.ws52{word-spacing:8.878800px;}
.ws113{word-spacing:8.937600px;}
.ws1d{word-spacing:8.996400px;}
.ws34{word-spacing:9.055200px;}
.wsd7{word-spacing:9.172800px;}
.wsa0{word-spacing:9.231600px;}
.wsed{word-spacing:9.290400px;}
.ws92{word-spacing:9.349200px;}
.ws79{word-spacing:9.408000px;}
.ws6c{word-spacing:9.466800px;}
.ws8f{word-spacing:9.525600px;}
.ws48{word-spacing:9.584400px;}
.wsff{word-spacing:9.643200px;}
.ws11b{word-spacing:9.702000px;}
.ws94{word-spacing:9.760800px;}
.ws7a{word-spacing:9.819600px;}
.ws10f{word-spacing:9.937200px;}
.ws100{word-spacing:9.996000px;}
.ws5b{word-spacing:10.054800px;}
.ws64{word-spacing:10.113600px;}
.wsde{word-spacing:10.172400px;}
.wsf5{word-spacing:10.231200px;}
.ws110{word-spacing:10.348800px;}
.ws26{word-spacing:10.407600px;}
.wsd4{word-spacing:10.525200px;}
.ws125{word-spacing:10.584000px;}
.ws59{word-spacing:10.642800px;}
.ws47{word-spacing:10.701600px;}
.wsc3{word-spacing:10.760400px;}
.ws130{word-spacing:10.819200px;}
.ws67{word-spacing:10.936800px;}
.wsb9{word-spacing:10.995600px;}
.ws126{word-spacing:11.054400px;}
.wsab{word-spacing:11.113200px;}
.wsbd{word-spacing:11.230800px;}
.ws4a{word-spacing:11.289600px;}
.wsdf{word-spacing:11.348400px;}
.ws54{word-spacing:11.407200px;}
.wsf4{word-spacing:11.466000px;}
.ws10a{word-spacing:11.524800px;}
.ws81{word-spacing:11.583600px;}
.ws1c{word-spacing:11.701200px;}
.wsb8{word-spacing:11.760000px;}
.ws2b{word-spacing:11.818800px;}
.ws12d{word-spacing:11.877600px;}
.ws9f{word-spacing:11.936400px;}
.ws61{word-spacing:11.995200px;}
.ws12e{word-spacing:12.054000px;}
.wsbb{word-spacing:12.112800px;}
.ws35{word-spacing:12.171600px;}
.ws12f{word-spacing:12.289200px;}
.ws13{word-spacing:12.348000px;}
.wsb6{word-spacing:12.406800px;}
.ws11e{word-spacing:12.465600px;}
.ws87{word-spacing:12.524400px;}
.wsba{word-spacing:12.642000px;}
.ws23{word-spacing:12.700800px;}
.ws105{word-spacing:12.818400px;}
.wsd6{word-spacing:12.877200px;}
.ws3b{word-spacing:12.994800px;}
.ws29{word-spacing:13.406400px;}
.ws12a{word-spacing:13.465200px;}
.ws7d{word-spacing:13.524000px;}
.ws62{word-spacing:13.582800px;}
.wse0{word-spacing:13.641600px;}
.ws42{word-spacing:13.700400px;}
.ws43{word-spacing:13.818000px;}
.wscd{word-spacing:13.994400px;}
.wsd2{word-spacing:14.112000px;}
.ws27{word-spacing:14.170800px;}
.ws38{word-spacing:14.347200px;}
.wsf3{word-spacing:14.464800px;}
.wsc2{word-spacing:14.523600px;}
.ws5d{word-spacing:14.582400px;}
.ws85{word-spacing:14.641200px;}
.wsb4{word-spacing:14.758800px;}
.ws11{word-spacing:14.817600px;}
.wsee{word-spacing:14.876400px;}
.wsf0{word-spacing:14.935200px;}
.wsa9{word-spacing:14.994000px;}
.ws136{word-spacing:15.170400px;}
.ws83{word-spacing:15.346800px;}
.ws17{word-spacing:15.405600px;}
.wsfc{word-spacing:15.640800px;}
.ws118{word-spacing:15.876000px;}
.wsbc{word-spacing:16.111200px;}
.ws10c{word-spacing:16.170000px;}
.ws6e{word-spacing:16.228800px;}
.ws33{word-spacing:16.346400px;}
.wsa2{word-spacing:16.522800px;}
.ws12b{word-spacing:16.640400px;}
.ws119{word-spacing:16.875600px;}
.wse8{word-spacing:16.993200px;}
.ws115{word-spacing:17.404800px;}
.ws7c{word-spacing:17.463600px;}
.wsf9{word-spacing:17.581200px;}
.wsd9{word-spacing:17.757600px;}
.wsdd{word-spacing:17.816400px;}
.wsfe{word-spacing:17.875200px;}
.ws134{word-spacing:17.934000px;}
.wsdc{word-spacing:18.169200px;}
.ws129{word-spacing:18.228000px;}
.ws63{word-spacing:18.580800px;}
.ws86{word-spacing:18.874800px;}
.wsa3{word-spacing:19.110000px;}
.ws75{word-spacing:19.168800px;}
.wsbe{word-spacing:19.521600px;}
.ws108{word-spacing:19.580400px;}
.ws123{word-spacing:19.756800px;}
.ws121{word-spacing:19.815600px;}
.wse3{word-spacing:19.874400px;}
.wse6{word-spacing:20.462400px;}
.ws133{word-spacing:20.874000px;}
.ws15{word-spacing:21.756000px;}
.ws116{word-spacing:21.932400px;}
.ws9c{word-spacing:22.167600px;}
.ws11a{word-spacing:22.402800px;}
.wsac{word-spacing:22.873200px;}
.ws37{word-spacing:23.108400px;}
.wsb3{word-spacing:23.814000px;}
.wsf1{word-spacing:24.108000px;}
.ws132{word-spacing:24.990000px;}
.ws7b{word-spacing:26.166000px;}
.ws104{word-spacing:26.812800px;}
.ws120{word-spacing:26.989200px;}
.ws90{word-spacing:27.342000px;}
.ws124{word-spacing:27.636000px;}
.wse5{word-spacing:28.988400px;}
.wsca{word-spacing:37.488000px;}
.wsc7{word-spacing:175.103989px;}
.wsc5{word-spacing:279.983993px;}
._21{margin-left:-9.855000px;}
._2{margin-left:-7.353600px;}
._6{margin-left:-5.378400px;}
._3{margin-left:-4.284000px;}
._b{margin-left:-3.265200px;}
._1{margin-left:-1.996800px;}
._5{width:1.118400px;}
._7{width:2.288404px;}
._4{width:3.705582px;}
._0{width:5.587200px;}
._1f{width:7.463994px;}
._c{width:9.169200px;}
._d{width:11.289592px;}
._e{width:12.550789px;}
._f{width:13.626000px;}
._9{width:15.059991px;}
._a{width:16.744800px;}
._8{width:17.836786px;}
._29{width:22.824000px;}
._2a{width:30.654000px;}
._28{width:44.784000px;}
._23{width:54.090000px;}
._24{width:57.285000px;}
._26{width:73.035000px;}
._22{width:77.805000px;}
._27{width:80.730000px;}
._20{width:87.165000px;}
._25{width:91.643400px;}
._18{width:184.675189px;}
._12{width:186.556800px;}
._1c{width:225.676800px;}
._11{width:236.112000px;}
._19{width:247.776000px;}
._15{width:268.080000px;}
._10{width:288.959989px;}
._16{width:294.624000px;}
._1e{width:306.527968px;}
._14{width:374.255993px;}
._1d{width:427.439968px;}
._1b{width:548.351968px;}
._1a{width:669.263968px;}
._13{width:760.876768px;}
._17{width:837.023968px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:31.500000px;}
.fse{font-size:41.160000px;}
.fs9{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs3{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fsc{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:74.580000px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.661706px;}
.yc{bottom:8.040000px;}
.y48{bottom:27.035706px;}
.y1b{bottom:69.510000px;}
.y15{bottom:77.715000px;}
.y46{bottom:79.008299px;}
.y45{bottom:91.009799px;}
.y1a{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y29a{bottom:100.662003px;}
.y34b{bottom:100.842773px;}
.y44{bottom:103.011299px;}
.y84{bottom:105.974416px;}
.ye9{bottom:106.628095px;}
.yb8{bottom:106.635295px;}
.y11b{bottom:106.642495px;}
.y17e{bottom:107.737953px;}
.y259{bottom:107.752353px;}
.y14f{bottom:107.759553px;}
.y1c3{bottom:107.766753px;}
.y236{bottom:107.809953px;}
.y274{bottom:107.831553px;}
.y182{bottom:108.323995px;}
.y186{bottom:108.338695px;}
.y30e{bottom:111.123917px;}
.y19{bottom:113.670000px;}
.y299{bottom:114.162003px;}
.y34a{bottom:114.342773px;}
.y43{bottom:115.012799px;}
.y1e9{bottom:115.361400px;}
.y1e6{bottom:115.362144px;}
.y83{bottom:123.967216px;}
.ye8{bottom:124.620895px;}
.y30d{bottom:124.623917px;}
.yb7{bottom:124.628095px;}
.y11a{bottom:124.635295px;}
.y17d{bottom:125.737953px;}
.y258{bottom:125.745153px;}
.y14e{bottom:125.752353px;}
.y1c2{bottom:125.759553px;}
.y235{bottom:125.802753px;}
.y273{bottom:125.824353px;}
.y181{bottom:126.316795px;}
.y185{bottom:126.331495px;}
.y42{bottom:127.014299px;}
.y349{bottom:127.842773px;}
.y1e8{bottom:130.361400px;}
.y1e5{bottom:130.362144px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y30c{bottom:138.123917px;}
.y41{bottom:139.015799px;}
.y298{bottom:141.212403px;}
.y348{bottom:141.342773px;}
.y82{bottom:141.960016px;}
.yb6{bottom:142.620895px;}
.y119{bottom:142.628095px;}
.y257{bottom:143.737953px;}
.y14d{bottom:143.745153px;}
.y1c1{bottom:143.752353px;}
.y17c{bottom:143.766753px;}
.y234{bottom:143.795553px;}
.y272{bottom:143.817153px;}
.y180{bottom:144.323995px;}
.y184{bottom:144.324295px;}
.y1e7{bottom:145.361400px;}
.y1e4{bottom:145.362144px;}
.y40{bottom:151.017299px;}
.y30b{bottom:151.623917px;}
.y347{bottom:154.842773px;}
.y16{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y17{bottom:157.830000px;}
.y297{bottom:159.205203px;}
.y81{bottom:159.952816px;}
.y118{bottom:160.620895px;}
.ye7{bottom:160.628095px;}
.yb5{bottom:160.656895px;}
.y14c{bottom:161.737953px;}
.y1c0{bottom:161.745153px;}
.y17b{bottom:161.759553px;}
.y256{bottom:161.781153px;}
.y233{bottom:161.788353px;}
.y271{bottom:161.809953px;}
.y17f{bottom:162.316795px;}
.y183{bottom:162.317095px;}
.y3f{bottom:163.018799px;}
.y30a{bottom:165.123917px;}
.y346{bottom:168.342773px;}
.y2d1{bottom:175.857773px;}
.y296{bottom:177.198003px;}
.y80{bottom:177.945616px;}
.ye6{bottom:178.620895px;}
.y309{bottom:178.623917px;}
.yb4{bottom:178.649695px;}
.y1bf{bottom:179.737953px;}
.y14b{bottom:179.745153px;}
.y17a{bottom:179.752353px;}
.y255{bottom:179.773953px;}
.y232{bottom:179.781153px;}
.y270{bottom:179.802753px;}
.y345{bottom:181.842773px;}
.y2d0{bottom:189.357773px;}
.y308{bottom:192.123917px;}
.y295{bottom:195.190803px;}
.y344{bottom:195.342773px;}
.y7f{bottom:195.938416px;}
.ye5{bottom:196.628095px;}
.yb3{bottom:196.642495px;}
.y14a{bottom:197.737953px;}
.y179{bottom:197.745153px;}
.y254{bottom:197.766753px;}
.y231{bottom:197.773953px;}
.y1e3{bottom:197.781153px;}
.y26f{bottom:197.795553px;}
.y21c{bottom:197.831530px;}
.y4d{bottom:201.361656px;}
.y2cf{bottom:202.857773px;}
.y307{bottom:205.623917px;}
.y343{bottom:208.842773px;}
.y294{bottom:213.183603px;}
.y7e{bottom:213.931216px;}
.y19b{bottom:214.423645px;}
.ye4{bottom:214.620895px;}
.yb2{bottom:214.635295px;}
.y4c{bottom:214.861656px;}
.y178{bottom:215.737953px;}
.y149{bottom:215.752353px;}
.y253{bottom:215.759553px;}
.y230{bottom:215.766753px;}
.y1be{bottom:215.773953px;}
.y26e{bottom:215.788353px;}
.y21b{bottom:215.824330px;}
.y2ce{bottom:216.357773px;}
.y306{bottom:219.123917px;}
.y342{bottom:222.342773px;}
.y4b{bottom:228.361656px;}
.y19a{bottom:229.423645px;}
.y2cd{bottom:229.857773px;}
.y293{bottom:231.176403px;}
.y7d{bottom:231.924016px;}
.y305{bottom:232.623917px;}
.yb1{bottom:232.628095px;}
.ye3{bottom:232.656895px;}
.y117{bottom:232.664095px;}
.y148{bottom:233.745153px;}
.y252{bottom:233.752353px;}
.y22f{bottom:233.759553px;}
.y1bd{bottom:233.766753px;}
.y26d{bottom:233.781153px;}
.y21a{bottom:233.817130px;}
.y341{bottom:235.842773px;}
.y4a{bottom:241.861656px;}
.y2cc{bottom:243.357773px;}
.y304{bottom:246.123917px;}
.y292{bottom:249.169203px;}
.y340{bottom:249.342773px;}
.y7c{bottom:249.916816px;}
.yb0{bottom:250.620895px;}
.ye2{bottom:250.649695px;}
.y116{bottom:250.656895px;}
.y147{bottom:251.737953px;}
.y251{bottom:251.745153px;}
.y22e{bottom:251.752353px;}
.y1bc{bottom:251.759553px;}
.y26c{bottom:251.773953px;}
.y219{bottom:251.809930px;}
.y2cb{bottom:256.857773px;}
.y303{bottom:259.623917px;}
.y33f{bottom:262.842773px;}
.y291{bottom:267.162003px;}
.y7b{bottom:267.909616px;}
.yaf{bottom:268.642495px;}
.y115{bottom:268.649695px;}
.y250{bottom:269.737953px;}
.y146{bottom:269.745153px;}
.y1bb{bottom:269.752353px;}
.y177{bottom:269.759553px;}
.y26b{bottom:269.766753px;}
.y218{bottom:269.802730px;}
.y302{bottom:273.123917px;}
.y33e{bottom:276.342773px;}
.y2ca{bottom:283.857773px;}
.y290{bottom:285.176403px;}
.y7a{bottom:285.902416px;}
.y301{bottom:286.623917px;}
.yae{bottom:286.635295px;}
.y114{bottom:286.642495px;}
.y145{bottom:287.737953px;}
.y1ba{bottom:287.745153px;}
.y176{bottom:287.752353px;}
.y26a{bottom:287.759553px;}
.y24f{bottom:287.781130px;}
.y217{bottom:287.795530px;}
.y33d{bottom:289.842773px;}
.y3d{bottom:295.715103px;}
.y2c9{bottom:297.357773px;}
.y300{bottom:300.123917px;}
.y28f{bottom:303.169203px;}
.y33c{bottom:303.342773px;}
.y79{bottom:303.895216px;}
.yad{bottom:304.628095px;}
.y113{bottom:304.635295px;}
.y1b9{bottom:305.737953px;}
.y175{bottom:305.745153px;}
.y269{bottom:305.752353px;}
.y22d{bottom:305.766753px;}
.y24e{bottom:305.773930px;}
.y203{bottom:305.781130px;}
.y216{bottom:305.788330px;}
.y144{bottom:305.824330px;}
.y2c8{bottom:310.857773px;}
.y2ff{bottom:313.623917px;}
.y33b{bottom:316.842773px;}
.y3c{bottom:318.215103px;}
.y28e{bottom:321.162003px;}
.y78{bottom:321.888016px;}
.yac{bottom:322.620895px;}
.y112{bottom:322.628095px;}
.y174{bottom:323.737953px;}
.y268{bottom:323.745153px;}
.y1b8{bottom:323.752353px;}
.y22c{bottom:323.759553px;}
.y24d{bottom:323.766730px;}
.y1e2{bottom:323.773930px;}
.y215{bottom:323.781130px;}
.y143{bottom:323.817130px;}
.y2c7{bottom:324.357773px;}
.y2fe{bottom:327.123917px;}
.y33a{bottom:330.342773px;}
.y3b{bottom:336.215103px;}
.y2c6{bottom:337.857773px;}
.y28d{bottom:339.284403px;}
.y77{bottom:339.880816px;}
.y111{bottom:340.620895px;}
.y2fd{bottom:340.623917px;}
.ye1{bottom:340.625696px;}
.yab{bottom:340.635295px;}
.y173{bottom:341.737953px;}
.y1b7{bottom:341.745153px;}
.y22b{bottom:341.752353px;}
.y24c{bottom:341.759530px;}
.y1e1{bottom:341.766730px;}
.y214{bottom:341.773930px;}
.y142{bottom:341.809930px;}
.y339{bottom:343.842773px;}
.ya{bottom:344.680500px;}
.y2c5{bottom:351.357773px;}
.y2fc{bottom:354.123917px;}
.y3a{bottom:354.215103px;}
.y28c{bottom:357.277203px;}
.y338{bottom:357.342773px;}
.y76{bottom:357.873616px;}
.ye0{bottom:358.620895px;}
.yaa{bottom:358.628095px;}
.y110{bottom:358.692895px;}
.y1b6{bottom:359.737953px;}
.y22a{bottom:359.745153px;}
.y24b{bottom:359.752330px;}
.y1e0{bottom:359.759530px;}
.y213{bottom:359.766730px;}
.y267{bottom:359.788330px;}
.y141{bottom:359.802730px;}
.y2c4{bottom:364.857773px;}
.y2fb{bottom:367.623917px;}
.y337{bottom:370.842773px;}
.y39{bottom:372.215103px;}
.y28b{bottom:375.270003px;}
.y75{bottom:375.866416px;}
.ya9{bottom:376.620895px;}
.y10f{bottom:376.685695px;}
.y172{bottom:377.737953px;}
.y24a{bottom:377.745130px;}
.y1df{bottom:377.752330px;}
.y212{bottom:377.759530px;}
.y1b5{bottom:377.766730px;}
.y266{bottom:377.781130px;}
.y140{bottom:377.795530px;}
.y2c3{bottom:378.357773px;}
.y2fa{bottom:381.123917px;}
.y336{bottom:384.342773px;}
.yd{bottom:386.490000px;}
.y38{bottom:390.215103px;}
.y2c2{bottom:391.857773px;}
.y28a{bottom:393.262803px;}
.y74{bottom:393.859216px;}
.ya8{bottom:394.620895px;}
.y2f9{bottom:394.623917px;}
.ydf{bottom:394.635295px;}
.y10e{bottom:394.678495px;}
.y9{bottom:395.689500px;}
.y249{bottom:395.737930px;}
.y1de{bottom:395.745130px;}
.y211{bottom:395.752330px;}
.y1b4{bottom:395.759530px;}
.y171{bottom:395.766730px;}
.y265{bottom:395.773930px;}
.y13f{bottom:395.788330px;}
.y335{bottom:397.842773px;}
.y2c1{bottom:405.357773px;}
.y2f8{bottom:408.123917px;}
.y37{bottom:408.215103px;}
.y289{bottom:411.255603px;}
.y334{bottom:411.342773px;}
.y73{bottom:411.852016px;}
.ya7{bottom:412.620895px;}
.yde{bottom:412.628095px;}
.y10d{bottom:412.671295px;}
.y1dd{bottom:413.737930px;}
.y210{bottom:413.745130px;}
.y1b3{bottom:413.752330px;}
.y170{bottom:413.759530px;}
.y264{bottom:413.766730px;}
.y13e{bottom:413.781130px;}
.y2f7{bottom:421.623917px;}
.y333{bottom:424.842773px;}
.y288{bottom:429.248403px;}
.y72{bottom:429.844816px;}
.ydd{bottom:430.620895px;}
.y10c{bottom:430.664095px;}
.y36{bottom:430.715103px;}
.y20f{bottom:431.737930px;}
.y1b2{bottom:431.745130px;}
.y16f{bottom:431.752330px;}
.y263{bottom:431.759530px;}
.y13d{bottom:431.773930px;}
.y2c0{bottom:432.357773px;}
.yb{bottom:434.850000px;}
.y2f6{bottom:435.123917px;}
.y332{bottom:438.342773px;}
.y2bf{bottom:445.857773px;}
.y8{bottom:446.698500px;}
.y287{bottom:447.241203px;}
.y71{bottom:447.837616px;}
.ya6{bottom:448.620895px;}
.y2f5{bottom:448.623917px;}
.ydc{bottom:448.628095px;}
.y10b{bottom:448.656895px;}
.y35{bottom:448.715103px;}
.y1b1{bottom:449.737930px;}
.y16e{bottom:449.745130px;}
.y262{bottom:449.752330px;}
.y13c{bottom:449.766730px;}
.y229{bottom:449.795530px;}
.y331{bottom:451.842773px;}
.y34e{bottom:456.342728px;}
.y2be{bottom:459.357773px;}
.y2f4{bottom:462.123917px;}
.y286{bottom:465.234003px;}
.y330{bottom:465.342773px;}
.y70{bottom:465.844816px;}
.ydb{bottom:466.620895px;}
.y10a{bottom:466.649695px;}
.ya5{bottom:466.656895px;}
.y34{bottom:466.715103px;}
.y16d{bottom:467.737930px;}
.y202{bottom:467.745130px;}
.y13b{bottom:467.759530px;}
.y228{bottom:467.788330px;}
.y248{bottom:467.802730px;}
.y34d{bottom:469.842728px;}
.y2bd{bottom:472.857773px;}
.y2f3{bottom:475.623917px;}
.y32f{bottom:478.842773px;}
.y285{bottom:483.226803px;}
.y34c{bottom:483.342728px;}
.y6f{bottom:483.837616px;}
.yda{bottom:484.635295px;}
.y109{bottom:484.642495px;}
.ya4{bottom:484.649695px;}
.y33{bottom:484.715103px;}
.y1b0{bottom:485.737930px;}
.y13a{bottom:485.752330px;}
.y16c{bottom:485.781130px;}
.y247{bottom:485.795530px;}
.y2bc{bottom:486.357773px;}
.y11{bottom:488.055000px;}
.y2f2{bottom:489.123917px;}
.y32e{bottom:492.342773px;}
.y7{bottom:497.707500px;}
.y2bb{bottom:499.857773px;}
.y284{bottom:501.219603px;}
.y6e{bottom:501.873616px;}
.y2f1{bottom:502.623917px;}
.yd9{bottom:502.628095px;}
.y108{bottom:502.635295px;}
.ya3{bottom:502.642495px;}
.y32{bottom:502.715103px;}
.y261{bottom:503.737930px;}
.y1af{bottom:503.742731px;}
.y139{bottom:503.745130px;}
.y16b{bottom:503.773930px;}
.y246{bottom:503.788330px;}
.y201{bottom:503.896376px;}
.y32d{bottom:505.842773px;}
.y2f0{bottom:516.123917px;}
.y283{bottom:519.212403px;}
.y32c{bottom:519.342773px;}
.y6d{bottom:519.866416px;}
.yd8{bottom:520.620895px;}
.y107{bottom:520.628095px;}
.ya2{bottom:520.635295px;}
.y31{bottom:520.715103px;}
.y138{bottom:521.737930px;}
.y16a{bottom:521.766730px;}
.y245{bottom:521.781130px;}
.y260{bottom:521.788330px;}
.y200{bottom:521.889176px;}
.y2ba{bottom:526.857773px;}
.y2ef{bottom:529.623917px;}
.y32b{bottom:532.842773px;}
.y282{bottom:537.205203px;}
.y6c{bottom:537.859216px;}
.y12{bottom:538.230000px;}
.y106{bottom:538.620895px;}
.ya1{bottom:538.628095px;}
.y30{bottom:538.715103px;}
.yd7{bottom:538.736141px;}
.y1dc{bottom:539.745130px;}
.y137{bottom:539.752330px;}
.y169{bottom:539.759530px;}
.y244{bottom:539.773930px;}
.y20e{bottom:539.781130px;}
.y1ff{bottom:539.881976px;}
.y2b9{bottom:540.357773px;}
.y2ee{bottom:543.123917px;}
.y32a{bottom:546.342773px;}
.y6{bottom:548.716500px;}
.y2b8{bottom:553.857773px;}
.y281{bottom:555.198003px;}
.y6b{bottom:555.852016px;}
.ya0{bottom:556.620895px;}
.y2ed{bottom:556.623917px;}
.y105{bottom:556.649695px;}
.yd6{bottom:556.728941px;}
.y1db{bottom:557.737930px;}
.y136{bottom:557.745130px;}
.y168{bottom:557.752330px;}
.y243{bottom:557.766730px;}
.y20d{bottom:557.773930px;}
.y1ae{bottom:557.795530px;}
.y1fe{bottom:557.874776px;}
.y329{bottom:559.842773px;}
.y2f{bottom:561.215103px;}
.y2ec{bottom:570.123917px;}
.y280{bottom:573.190803px;}
.y328{bottom:573.342773px;}
.y6a{bottom:573.844816px;}
.y9f{bottom:574.628095px;}
.y104{bottom:574.642495px;}
.yd5{bottom:574.721741px;}
.y135{bottom:575.737930px;}
.y167{bottom:575.745130px;}
.y242{bottom:575.759530px;}
.y20c{bottom:575.766730px;}
.y1ad{bottom:575.788330px;}
.y1fd{bottom:575.867576px;}
.y2e{bottom:579.215103px;}
.y2eb{bottom:583.623917px;}
.y327{bottom:586.842773px;}
.y1c{bottom:589.605000px;}
.y27f{bottom:591.183603px;}
.y69{bottom:591.837616px;}
.y9e{bottom:592.620895px;}
.y103{bottom:592.635295px;}
.yd4{bottom:592.714541px;}
.y2b7{bottom:592.861523px;}
.y166{bottom:593.737930px;}
.y134{bottom:593.745130px;}
.y241{bottom:593.752330px;}
.y1da{bottom:593.759530px;}
.y1ac{bottom:593.781130px;}
.y1fc{bottom:593.860376px;}
.y2ea{bottom:597.123917px;}
.y2d{bottom:597.215103px;}
.y5{bottom:599.725500px;}
.y326{bottom:600.342773px;}
.y2b6{bottom:606.361523px;}
.y27e{bottom:609.176403px;}
.y68{bottom:609.837616px;}
.y2e9{bottom:610.623917px;}
.y102{bottom:610.628095px;}
.yd3{bottom:610.707341px;}
.y9d{bottom:610.728941px;}
.y133{bottom:611.737930px;}
.y240{bottom:611.745130px;}
.y1d9{bottom:611.752330px;}
.y165{bottom:611.766730px;}
.y1ab{bottom:611.773930px;}
.y1fb{bottom:611.853176px;}
.y325{bottom:613.842773px;}
.y2c{bottom:619.715103px;}
.y2b5{bottom:619.861523px;}
.y2e8{bottom:624.123917px;}
.y27d{bottom:627.169203px;}
.y324{bottom:627.342773px;}
.y67{bottom:627.866416px;}
.y101{bottom:628.620895px;}
.yd2{bottom:628.700141px;}
.y9c{bottom:628.721741px;}
.y23f{bottom:629.737930px;}
.y1d8{bottom:629.745130px;}
.y132{bottom:629.752330px;}
.y164{bottom:629.759530px;}
.y1aa{bottom:629.766730px;}
.y1fa{bottom:629.845976px;}
.ye{bottom:631.920000px;}
.y2e7{bottom:637.623917px;}
.y2b{bottom:637.715103px;}
.y2b4{bottom:639.357773px;}
.y323{bottom:640.842773px;}
.y27c{bottom:645.162003px;}
.y66{bottom:645.859216px;}
.y100{bottom:646.635295px;}
.yd1{bottom:646.692941px;}
.y9b{bottom:646.714541px;}
.y1d7{bottom:647.737930px;}
.y131{bottom:647.745130px;}
.y163{bottom:647.752330px;}
.y1a9{bottom:647.759530px;}
.y1f9{bottom:647.838776px;}
.y2e6{bottom:651.123917px;}
.y2b3{bottom:652.857773px;}
.y322{bottom:654.342773px;}
.y2a{bottom:655.715103px;}
.y27b{bottom:663.162003px;}
.y65{bottom:663.852016px;}
.y2e5{bottom:664.623917px;}
.yff{bottom:664.628095px;}
.yd0{bottom:664.685741px;}
.y9a{bottom:664.707341px;}
.y130{bottom:665.737930px;}
.y1d6{bottom:665.742731px;}
.y162{bottom:665.745130px;}
.y1a8{bottom:665.752330px;}
.y20b{bottom:665.759530px;}
.y1f8{bottom:665.831576px;}
.y2b2{bottom:666.357773px;}
.y321{bottom:667.842773px;}
.y29{bottom:673.715103px;}
.y2e4{bottom:678.123917px;}
.y320{bottom:681.342773px;}
.y64{bottom:681.844816px;}
.yfe{bottom:682.620895px;}
.ycf{bottom:682.678541px;}
.y99{bottom:682.700141px;}
.y161{bottom:683.737930px;}
.y1a7{bottom:683.745130px;}
.y20a{bottom:683.752330px;}
.y12f{bottom:683.759530px;}
.y1f7{bottom:683.824376px;}
.y2b1{bottom:685.854023px;}
.y28{bottom:691.715103px;}
.y31f{bottom:694.842773px;}
.y2b0{bottom:699.354023px;}
.y63{bottom:699.837616px;}
.yfd{bottom:700.620895px;}
.yce{bottom:700.671341px;}
.y98{bottom:700.692941px;}
.y1a6{bottom:701.737930px;}
.y160{bottom:701.745130px;}
.y12e{bottom:701.752330px;}
.y1f6{bottom:701.817176px;}
.y189{bottom:704.587521px;}
.y31e{bottom:708.342773px;}
.y27{bottom:709.715103px;}
.y2af{bottom:712.854023px;}
.y62{bottom:717.844816px;}
.yfc{bottom:718.635295px;}
.ycd{bottom:718.664141px;}
.y97{bottom:718.685741px;}
.y15f{bottom:719.737930px;}
.y12d{bottom:719.745130px;}
.y27a{bottom:719.752330px;}
.y1a5{bottom:719.781176px;}
.y227{bottom:719.802776px;}
.y1f5{bottom:719.809976px;}
.y188{bottom:721.587021px;}
.y31d{bottom:721.842773px;}
.y26{bottom:732.215103px;}
.y2ae{bottom:732.350273px;}
.y31c{bottom:735.342773px;}
.y61{bottom:735.837616px;}
.yfb{bottom:736.628095px;}
.ycc{bottom:736.656941px;}
.y96{bottom:736.678541px;}
.y12c{bottom:737.737930px;}
.y279{bottom:737.745130px;}
.y1a4{bottom:737.773976px;}
.y226{bottom:737.795576px;}
.y1f4{bottom:737.802776px;}
.y209{bottom:737.809976px;}
.y1d5{bottom:737.817176px;}
.y199{bottom:742.759518px;}
.y2ad{bottom:745.850273px;}
.y2e3{bottom:747.123871px;}
.y31b{bottom:748.842773px;}
.y60{bottom:753.924108px;}
.yfa{bottom:754.620895px;}
.ycb{bottom:754.649741px;}
.y95{bottom:754.671341px;}
.y15e{bottom:755.737930px;}
.y1a3{bottom:755.766776px;}
.y12b{bottom:755.773976px;}
.y225{bottom:755.788376px;}
.y1f3{bottom:755.795576px;}
.y208{bottom:755.802776px;}
.y1d4{bottom:755.809976px;}
.y2ac{bottom:759.350273px;}
.y198{bottom:760.987518px;}
.y31a{bottom:762.342773px;}
.y5f{bottom:771.916908px;}
.yf9{bottom:772.635341px;}
.yca{bottom:772.642541px;}
.y94{bottom:772.664141px;}
.y25f{bottom:773.745176px;}
.y1a2{bottom:773.759576px;}
.y12a{bottom:773.766776px;}
.y224{bottom:773.781176px;}
.y1f2{bottom:773.788376px;}
.y207{bottom:773.795576px;}
.y1d3{bottom:773.802776px;}
.y2e2{bottom:774.123871px;}
.y319{bottom:775.842773px;}
.y4{bottom:778.225500px;}
.y2ab{bottom:778.846523px;}
.y197{bottom:779.131518px;}
.y2e1{bottom:787.623871px;}
.y318{bottom:789.342773px;}
.y5e{bottom:789.909708px;}
.yf8{bottom:790.628141px;}
.yc9{bottom:790.635341px;}
.y93{bottom:790.656941px;}
.y25e{bottom:791.737976px;}
.y15d{bottom:791.752376px;}
.y129{bottom:791.759576px;}
.y223{bottom:791.773976px;}
.y1f1{bottom:791.781176px;}
.y206{bottom:791.788376px;}
.y1d2{bottom:791.795576px;}
.y2aa{bottom:792.346523px;}
.y196{bottom:797.275518px;}
.y317{bottom:802.842773px;}
.y25{bottom:804.548112px;}
.y2e0{bottom:805.623871px;}
.y2a9{bottom:805.846523px;}
.y5d{bottom:807.902508px;}
.yc8{bottom:808.628141px;}
.yf7{bottom:808.642541px;}
.y92{bottom:808.649741px;}
.y15c{bottom:809.745176px;}
.y128{bottom:809.752376px;}
.y222{bottom:809.766776px;}
.y1f0{bottom:809.773976px;}
.y205{bottom:809.781176px;}
.y1d1{bottom:809.788376px;}
.y2df{bottom:814.623871px;}
.y195{bottom:815.419518px;}
.y13{bottom:815.670000px;}
.y316{bottom:816.342773px;}
.y2a8{bottom:825.342773px;}
.y24{bottom:825.552612px;}
.y5c{bottom:825.895308px;}
.yc7{bottom:826.620941px;}
.yf6{bottom:826.635341px;}
.y91{bottom:826.642541px;}
.y15b{bottom:827.737976px;}
.y127{bottom:827.745176px;}
.y221{bottom:827.759576px;}
.y1ef{bottom:827.766776px;}
.y204{bottom:827.773976px;}
.y1d0{bottom:827.781176px;}
.y2de{bottom:828.123871px;}
.y315{bottom:829.842773px;}
.y194{bottom:833.563518px;}
.y2a7{bottom:838.842773px;}
.y314{bottom:843.342773px;}
.y5b{bottom:843.888108px;}
.yc6{bottom:844.620941px;}
.yf5{bottom:844.628141px;}
.y90{bottom:844.635341px;}
.y126{bottom:845.737976px;}
.y220{bottom:845.752376px;}
.y1ee{bottom:845.759576px;}
.y1a1{bottom:845.766776px;}
.y1cf{bottom:845.773976px;}
.y25d{bottom:845.781176px;}
.y2dd{bottom:846.123871px;}
.y193{bottom:851.707518px;}
.y2a6{bottom:852.342773px;}
.y2dc{bottom:855.123871px;}
.y313{bottom:856.842773px;}
.y23{bottom:861.589528px;}
.y5a{bottom:861.880908px;}
.yf4{bottom:862.620941px;}
.y8f{bottom:862.628141px;}
.y125{bottom:863.737976px;}
.y21f{bottom:863.745176px;}
.y1ed{bottom:863.752376px;}
.y15a{bottom:863.759576px;}
.y1ce{bottom:863.766776px;}
.y25c{bottom:863.773976px;}
.y192{bottom:869.851518px;}
.y312{bottom:870.342773px;}
.y59{bottom:879.873708px;}
.y8e{bottom:880.620941px;}
.yc5{bottom:880.628141px;}
.yf3{bottom:880.685995px;}
.y21e{bottom:881.737976px;}
.y1ec{bottom:881.745176px;}
.y159{bottom:881.752376px;}
.y1cd{bottom:881.759576px;}
.y25b{bottom:881.766776px;}
.y2db{bottom:882.123871px;}
.y2a5{bottom:883.842773px;}
.y191{bottom:887.995518px;}
.y2da{bottom:895.623871px;}
.y2a4{bottom:897.342773px;}
.y58{bottom:897.866508px;}
.yc4{bottom:898.620941px;}
.y8d{bottom:898.642541px;}
.yf2{bottom:898.678795px;}
.y1eb{bottom:899.737976px;}
.y158{bottom:899.745176px;}
.y1cc{bottom:899.752376px;}
.y124{bottom:899.759576px;}
.y22{bottom:900.577528px;}
.y3{bottom:905.716500px;}
.y190{bottom:906.139518px;}
.y311{bottom:910.842773px;}
.y2a3{bottom:915.342773px;}
.y57{bottom:915.859308px;}
.y8c{bottom:916.635341px;}
.yc3{bottom:916.671341px;}
.yf1{bottom:916.671595px;}
.y157{bottom:917.737976px;}
.y1cb{bottom:917.745176px;}
.y123{bottom:917.752376px;}
.y21d{bottom:917.773976px;}
.y23e{bottom:917.853453px;}
.y2d9{bottom:922.623871px;}
.y18f{bottom:924.283518px;}
.y310{bottom:924.342773px;}
.y56{bottom:933.852108px;}
.y8b{bottom:934.628141px;}
.yc2{bottom:934.664141px;}
.yf0{bottom:934.664395px;}
.y1ca{bottom:935.737976px;}
.y1ea{bottom:935.742776px;}
.y122{bottom:935.745176px;}
.y1a0{bottom:935.752376px;}
.y156{bottom:935.766776px;}
.y23d{bottom:935.846253px;}
.y2d8{bottom:936.123871px;}
.y30f{bottom:937.842773px;}
.y21{bottom:939.565528px;}
.y18e{bottom:942.427518px;}
.y2a2{bottom:951.342773px;}
.y55{bottom:951.844908px;}
.y8a{bottom:952.620941px;}
.yc1{bottom:952.656941px;}
.yef{bottom:952.657195px;}
.y121{bottom:953.737976px;}
.y19f{bottom:953.745176px;}
.y155{bottom:953.759576px;}
.y1c9{bottom:953.795853px;}
.y23c{bottom:953.839053px;}
.y18d{bottom:960.571518px;}
.y2d7{bottom:963.123871px;}
.y2{bottom:964.228500px;}
.y2a1{bottom:964.842773px;}
.y54{bottom:969.837708px;}
.y89{bottom:970.635341px;}
.yc0{bottom:970.649741px;}
.yee{bottom:970.649995px;}
.y120{bottom:971.737976px;}
.y25a{bottom:971.745176px;}
.y154{bottom:971.752376px;}
.y1c8{bottom:971.788653px;}
.y23b{bottom:971.831853px;}
.y2d6{bottom:976.623871px;}
.y2a0{bottom:978.342773px;}
.y20{bottom:978.553528px;}
.y18c{bottom:978.715518px;}
.y53{bottom:987.852108px;}
.y88{bottom:988.628141px;}
.ybf{bottom:988.642541px;}
.yed{bottom:988.642795px;}
.y1{bottom:989.716500px;}
.y19e{bottom:989.737976px;}
.y153{bottom:989.745176px;}
.y11f{bottom:989.759576px;}
.y1c7{bottom:989.781453px;}
.y23a{bottom:989.824653px;}
.y278{bottom:989.846253px;}
.y2d5{bottom:990.123871px;}
.y29f{bottom:991.842773px;}
.y2d4{bottom:1003.623871px;}
.y29e{bottom:1005.342773px;}
.y18b{bottom:1005.487518px;}
.y52{bottom:1005.844908px;}
.y87{bottom:1006.620941px;}
.ybe{bottom:1006.635341px;}
.yec{bottom:1006.635595px;}
.y152{bottom:1007.737976px;}
.y19d{bottom:1007.745176px;}
.y11e{bottom:1007.752376px;}
.y1c6{bottom:1007.774253px;}
.y239{bottom:1007.817453px;}
.y277{bottom:1007.839053px;}
.y2d3{bottom:1017.123871px;}
.y29d{bottom:1018.842773px;}
.y18a{bottom:1018.987518px;}
.y51{bottom:1023.837708px;}
.y86{bottom:1024.620941px;}
.ybd{bottom:1024.628141px;}
.yeb{bottom:1024.628395px;}
.y19c{bottom:1025.737976px;}
.y11d{bottom:1025.745176px;}
.y151{bottom:1025.759853px;}
.y1c5{bottom:1025.767053px;}
.y238{bottom:1025.810253px;}
.y276{bottom:1025.831853px;}
.y29c{bottom:1032.342773px;}
.y1f{bottom:1033.362579px;}
.y3e{bottom:1035.750183px;}
.y50{bottom:1041.837708px;}
.ybc{bottom:1042.620941px;}
.yea{bottom:1042.621195px;}
.y85{bottom:1042.761333px;}
.y187{bottom:1043.300079px;}
.y11c{bottom:1043.737976px;}
.y150{bottom:1043.752653px;}
.y1c4{bottom:1043.759853px;}
.y237{bottom:1043.803053px;}
.y275{bottom:1043.824653px;}
.y2d2{bottom:1044.123871px;}
.y29b{bottom:1045.842773px;}
.y47{bottom:1093.342529px;}
.y1e{bottom:1112.297079px;}
.yb9{bottom:1126.524628px;}
.y4e{bottom:1126.524719px;}
.ybb{bottom:1126.756989px;}
.y1d{bottom:1126.925079px;}
.yba{bottom:1127.300079px;}
.y4f{bottom:1127.304719px;}
.h25{height:27.814500px;}
.h4{height:33.000000px;}
.h15{height:37.086000px;}
.h18{height:39.735000px;}
.h1f{height:39.984000px;}
.h1e{height:40.026000px;}
.h14{height:41.538000px;}
.h22{height:42.384000px;}
.h16{height:42.641999px;}
.h27{height:42.840000px;}
.h24{height:43.785000px;}
.hc{height:45.696000px;}
.h19{height:45.744000px;}
.h26{height:45.814500px;}
.h20{height:46.704000px;}
.hb{height:47.232000px;}
.h23{height:47.472000px;}
.h13{height:52.980000px;}
.h1d{height:53.406000px;}
.h1b{height:53.709599px;}
.h1a{height:55.860000px;}
.h12{height:58.380000px;}
.h3{height:58.406250px;}
.h11{height:61.120200px;}
.h1c{height:62.534765px;}
.h2{height:66.750000px;}
.hf{height:67.194379px;}
.h10{height:67.212379px;}
.h5{height:67.740234px;}
.h17{height:71.000160px;}
.hd{height:77.142000px;}
.h21{height:100.704000px;}
.h7{height:115.215000px;}
.he{height:137.088000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:267.076492px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x10{left:33.840675px;}
.xa{left:84.933002px;}
.xb{left:92.734348px;}
.xc{left:94.683150px;}
.x12{left:97.034552px;}
.x17{left:107.539352px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xe{left:270.817497px;}
.x13{left:457.081652px;}
.x14{left:469.081795px;}
.x16{left:479.586594px;}
.xf{left:540.637482px;}
.xd{left:694.929886px;}
.x15{left:741.068390px;}
.x11{left:747.224258px;}
@media print{
.v5{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:20.829124pt;}
.v2{vertical-align:23.466471pt;}
.v4{vertical-align:48.000000pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls7{letter-spacing:-0.795520pt;}
.ls9{letter-spacing:-0.731733pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.313600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000157pt;}
.ls8{letter-spacing:0.000681pt;}
.ls6{letter-spacing:0.662933pt;}
.ls1{letter-spacing:4.853333pt;}
.ls3{letter-spacing:34.049624pt;}
.ws3{word-spacing:-18.858667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9{word-spacing:-14.717120pt;}
.wsb{word-spacing:-14.054187pt;}
.wsa{word-spacing:-13.258667pt;}
.ws9e{word-spacing:-12.282667pt;}
.wscb{word-spacing:-11.550933pt;}
.ws5{word-spacing:-11.096533pt;}
.ws6{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.560000pt;}
.wsf{word-spacing:-10.384000pt;}
.ws10{word-spacing:-10.156800pt;}
.wsc6{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws4{word-spacing:-8.993600pt;}
.wsc{word-spacing:-8.760000pt;}
.ws122{word-spacing:-8.280000pt;}
.ws8{word-spacing:-7.242667pt;}
.wsc4{word-spacing:-6.794667pt;}
.ws139{word-spacing:-6.132000pt;}
.wsd{word-spacing:-2.464000pt;}
.wse{word-spacing:-2.053333pt;}
.ws13a{word-spacing:-1.600000pt;}
.wse1{word-spacing:-1.202133pt;}
.wscc{word-spacing:-0.940800pt;}
.wsfa{word-spacing:-0.888533pt;}
.ws107{word-spacing:-0.731733pt;}
.ws40{word-spacing:-0.679467pt;}
.wsd3{word-spacing:-0.627200pt;}
.wsa7{word-spacing:-0.574933pt;}
.wsf8{word-spacing:-0.522667pt;}
.wseb{word-spacing:-0.470400pt;}
.ws56{word-spacing:-0.418133pt;}
.ws131{word-spacing:-0.365867pt;}
.ws4f{word-spacing:-0.313600pt;}
.ws128{word-spacing:-0.261333pt;}
.wsf7{word-spacing:-0.209067pt;}
.wse7{word-spacing:-0.156800pt;}
.ws11d{word-spacing:-0.104533pt;}
.ws72{word-spacing:-0.052267pt;}
.ws13b{word-spacing:-0.040000pt;}
.ws1{word-spacing:0.000000pt;}
.wse4{word-spacing:0.052267pt;}
.ws6d{word-spacing:0.104533pt;}
.ws22{word-spacing:0.156800pt;}
.ws12c{word-spacing:0.209067pt;}
.ws1f{word-spacing:0.261333pt;}
.ws44{word-spacing:0.418133pt;}
.ws88{word-spacing:0.470400pt;}
.ws138{word-spacing:0.522667pt;}
.wsd1{word-spacing:0.627200pt;}
.ws97{word-spacing:0.679467pt;}
.ws2f{word-spacing:0.731733pt;}
.ws99{word-spacing:0.784000pt;}
.ws11f{word-spacing:0.888533pt;}
.wsea{word-spacing:0.940800pt;}
.wsb0{word-spacing:0.993067pt;}
.ws89{word-spacing:1.045333pt;}
.ws51{word-spacing:1.097600pt;}
.ws80{word-spacing:1.149867pt;}
.wsc9{word-spacing:1.202133pt;}
.wsf2{word-spacing:1.254400pt;}
.wsec{word-spacing:1.306667pt;}
.ws2c{word-spacing:1.358933pt;}
.ws60{word-spacing:1.411200pt;}
.ws68{word-spacing:1.515733pt;}
.ws4b{word-spacing:1.568000pt;}
.ws8d{word-spacing:1.620267pt;}
.ws127{word-spacing:1.672533pt;}
.wsae{word-spacing:1.724800pt;}
.ws3a{word-spacing:1.777067pt;}
.wsb5{word-spacing:1.829333pt;}
.ws58{word-spacing:1.881600pt;}
.ws135{word-spacing:1.933867pt;}
.wsc0{word-spacing:1.986133pt;}
.wsb1{word-spacing:2.038400pt;}
.ws2d{word-spacing:2.090667pt;}
.ws74{word-spacing:2.142933pt;}
.wsce{word-spacing:2.195200pt;}
.ws21{word-spacing:2.247467pt;}
.ws11c{word-spacing:2.299733pt;}
.ws24{word-spacing:2.352000pt;}
.wscf{word-spacing:2.404267pt;}
.ws18{word-spacing:2.456533pt;}
.ws20{word-spacing:2.508800pt;}
.ws55{word-spacing:2.561067pt;}
.ws32{word-spacing:2.665600pt;}
.ws1a{word-spacing:2.717867pt;}
.wsd8{word-spacing:2.770133pt;}
.ws91{word-spacing:2.822400pt;}
.ws103{word-spacing:2.874667pt;}
.ws8a{word-spacing:2.926933pt;}
.ws25{word-spacing:2.979200pt;}
.ws39{word-spacing:3.031467pt;}
.ws28{word-spacing:3.083733pt;}
.ws57{word-spacing:3.136000pt;}
.ws8c{word-spacing:3.188267pt;}
.ws2e{word-spacing:3.240533pt;}
.ws111{word-spacing:3.292800pt;}
.ws6a{word-spacing:3.345067pt;}
.ws84{word-spacing:3.397333pt;}
.ws41{word-spacing:3.449600pt;}
.ws53{word-spacing:3.501867pt;}
.ws50{word-spacing:3.554133pt;}
.ws1e{word-spacing:3.606400pt;}
.ws70{word-spacing:3.658667pt;}
.ws9a{word-spacing:3.710933pt;}
.ws10e{word-spacing:3.763200pt;}
.ws4d{word-spacing:3.815467pt;}
.wsda{word-spacing:3.867733pt;}
.ws14{word-spacing:3.920000pt;}
.ws45{word-spacing:3.972267pt;}
.ws10d{word-spacing:4.024533pt;}
.ws7f{word-spacing:4.076800pt;}
.ws102{word-spacing:4.129067pt;}
.ws95{word-spacing:4.181333pt;}
.ws112{word-spacing:4.233600pt;}
.ws49{word-spacing:4.285867pt;}
.ws8b{word-spacing:4.338133pt;}
.ws109{word-spacing:4.390400pt;}
.wsd5{word-spacing:4.442667pt;}
.wsf6{word-spacing:4.494933pt;}
.ws101{word-spacing:4.547200pt;}
.ws5e{word-spacing:4.599467pt;}
.wsdb{word-spacing:4.651733pt;}
.ws5f{word-spacing:4.704000pt;}
.wsc1{word-spacing:4.756267pt;}
.ws93{word-spacing:4.808533pt;}
.wsfd{word-spacing:4.860800pt;}
.ws114{word-spacing:4.913067pt;}
.ws6f{word-spacing:4.965333pt;}
.ws7e{word-spacing:5.017600pt;}
.ws31{word-spacing:5.069867pt;}
.wsad{word-spacing:5.122133pt;}
.wsc8{word-spacing:5.174400pt;}
.ws46{word-spacing:5.226667pt;}
.ws4e{word-spacing:5.278933pt;}
.ws5c{word-spacing:5.331200pt;}
.ws78{word-spacing:5.383467pt;}
.wsa6{word-spacing:5.435733pt;}
.wsa1{word-spacing:5.488000pt;}
.ws69{word-spacing:5.540267pt;}
.wsd0{word-spacing:5.592533pt;}
.ws77{word-spacing:5.644800pt;}
.wsbf{word-spacing:5.697067pt;}
.ws96{word-spacing:5.749333pt;}
.ws3e{word-spacing:5.801600pt;}
.ws19{word-spacing:5.906133pt;}
.wse2{word-spacing:5.958400pt;}
.ws3c{word-spacing:6.010667pt;}
.ws30{word-spacing:6.062933pt;}
.ws3f{word-spacing:6.115200pt;}
.ws82{word-spacing:6.167467pt;}
.ws137{word-spacing:6.219733pt;}
.ws66{word-spacing:6.272000pt;}
.wse9{word-spacing:6.324267pt;}
.ws65{word-spacing:6.376533pt;}
.ws71{word-spacing:6.428800pt;}
.ws1b{word-spacing:6.481067pt;}
.ws12{word-spacing:6.533333pt;}
.ws9b{word-spacing:6.585600pt;}
.wsfb{word-spacing:6.637867pt;}
.ws73{word-spacing:6.690133pt;}
.ws36{word-spacing:6.742400pt;}
.ws16{word-spacing:6.794667pt;}
.ws98{word-spacing:6.846933pt;}
.wsa4{word-spacing:6.899200pt;}
.ws106{word-spacing:6.951467pt;}
.ws4c{word-spacing:7.003733pt;}
.wsa5{word-spacing:7.056000pt;}
.wsb2{word-spacing:7.108267pt;}
.wsb7{word-spacing:7.160533pt;}
.wsaa{word-spacing:7.212800pt;}
.ws9d{word-spacing:7.265067pt;}
.wsaf{word-spacing:7.317333pt;}
.ws6b{word-spacing:7.369600pt;}
.wsa8{word-spacing:7.421867pt;}
.ws117{word-spacing:7.474133pt;}
.ws3d{word-spacing:7.526400pt;}
.wsef{word-spacing:7.578667pt;}
.ws8e{word-spacing:7.630933pt;}
.ws5a{word-spacing:7.683200pt;}
.ws10b{word-spacing:7.735467pt;}
.ws2a{word-spacing:7.787733pt;}
.ws76{word-spacing:7.840000pt;}
.ws52{word-spacing:7.892267pt;}
.ws113{word-spacing:7.944533pt;}
.ws1d{word-spacing:7.996800pt;}
.ws34{word-spacing:8.049067pt;}
.wsd7{word-spacing:8.153600pt;}
.wsa0{word-spacing:8.205867pt;}
.wsed{word-spacing:8.258133pt;}
.ws92{word-spacing:8.310400pt;}
.ws79{word-spacing:8.362667pt;}
.ws6c{word-spacing:8.414933pt;}
.ws8f{word-spacing:8.467200pt;}
.ws48{word-spacing:8.519467pt;}
.wsff{word-spacing:8.571733pt;}
.ws11b{word-spacing:8.624000pt;}
.ws94{word-spacing:8.676267pt;}
.ws7a{word-spacing:8.728533pt;}
.ws10f{word-spacing:8.833067pt;}
.ws100{word-spacing:8.885333pt;}
.ws5b{word-spacing:8.937600pt;}
.ws64{word-spacing:8.989867pt;}
.wsde{word-spacing:9.042133pt;}
.wsf5{word-spacing:9.094400pt;}
.ws110{word-spacing:9.198933pt;}
.ws26{word-spacing:9.251200pt;}
.wsd4{word-spacing:9.355733pt;}
.ws125{word-spacing:9.408000pt;}
.ws59{word-spacing:9.460267pt;}
.ws47{word-spacing:9.512533pt;}
.wsc3{word-spacing:9.564800pt;}
.ws130{word-spacing:9.617067pt;}
.ws67{word-spacing:9.721600pt;}
.wsb9{word-spacing:9.773867pt;}
.ws126{word-spacing:9.826133pt;}
.wsab{word-spacing:9.878400pt;}
.wsbd{word-spacing:9.982933pt;}
.ws4a{word-spacing:10.035200pt;}
.wsdf{word-spacing:10.087467pt;}
.ws54{word-spacing:10.139733pt;}
.wsf4{word-spacing:10.192000pt;}
.ws10a{word-spacing:10.244267pt;}
.ws81{word-spacing:10.296533pt;}
.ws1c{word-spacing:10.401067pt;}
.wsb8{word-spacing:10.453333pt;}
.ws2b{word-spacing:10.505600pt;}
.ws12d{word-spacing:10.557867pt;}
.ws9f{word-spacing:10.610133pt;}
.ws61{word-spacing:10.662400pt;}
.ws12e{word-spacing:10.714667pt;}
.wsbb{word-spacing:10.766933pt;}
.ws35{word-spacing:10.819200pt;}
.ws12f{word-spacing:10.923733pt;}
.ws13{word-spacing:10.976000pt;}
.wsb6{word-spacing:11.028267pt;}
.ws11e{word-spacing:11.080533pt;}
.ws87{word-spacing:11.132800pt;}
.wsba{word-spacing:11.237333pt;}
.ws23{word-spacing:11.289600pt;}
.ws105{word-spacing:11.394133pt;}
.wsd6{word-spacing:11.446400pt;}
.ws3b{word-spacing:11.550933pt;}
.ws29{word-spacing:11.916800pt;}
.ws12a{word-spacing:11.969067pt;}
.ws7d{word-spacing:12.021333pt;}
.ws62{word-spacing:12.073600pt;}
.wse0{word-spacing:12.125867pt;}
.ws42{word-spacing:12.178133pt;}
.ws43{word-spacing:12.282667pt;}
.wscd{word-spacing:12.439467pt;}
.wsd2{word-spacing:12.544000pt;}
.ws27{word-spacing:12.596267pt;}
.ws38{word-spacing:12.753067pt;}
.wsf3{word-spacing:12.857600pt;}
.wsc2{word-spacing:12.909867pt;}
.ws5d{word-spacing:12.962133pt;}
.ws85{word-spacing:13.014400pt;}
.wsb4{word-spacing:13.118933pt;}
.ws11{word-spacing:13.171200pt;}
.wsee{word-spacing:13.223467pt;}
.wsf0{word-spacing:13.275733pt;}
.wsa9{word-spacing:13.328000pt;}
.ws136{word-spacing:13.484800pt;}
.ws83{word-spacing:13.641600pt;}
.ws17{word-spacing:13.693867pt;}
.wsfc{word-spacing:13.902933pt;}
.ws118{word-spacing:14.112000pt;}
.wsbc{word-spacing:14.321067pt;}
.ws10c{word-spacing:14.373333pt;}
.ws6e{word-spacing:14.425600pt;}
.ws33{word-spacing:14.530133pt;}
.wsa2{word-spacing:14.686933pt;}
.ws12b{word-spacing:14.791467pt;}
.ws119{word-spacing:15.000533pt;}
.wse8{word-spacing:15.105067pt;}
.ws115{word-spacing:15.470933pt;}
.ws7c{word-spacing:15.523200pt;}
.wsf9{word-spacing:15.627733pt;}
.wsd9{word-spacing:15.784533pt;}
.wsdd{word-spacing:15.836800pt;}
.wsfe{word-spacing:15.889067pt;}
.ws134{word-spacing:15.941333pt;}
.wsdc{word-spacing:16.150400pt;}
.ws129{word-spacing:16.202667pt;}
.ws63{word-spacing:16.516267pt;}
.ws86{word-spacing:16.777600pt;}
.wsa3{word-spacing:16.986667pt;}
.ws75{word-spacing:17.038933pt;}
.wsbe{word-spacing:17.352533pt;}
.ws108{word-spacing:17.404800pt;}
.ws123{word-spacing:17.561600pt;}
.ws121{word-spacing:17.613867pt;}
.wse3{word-spacing:17.666133pt;}
.wse6{word-spacing:18.188800pt;}
.ws133{word-spacing:18.554667pt;}
.ws15{word-spacing:19.338667pt;}
.ws116{word-spacing:19.495467pt;}
.ws9c{word-spacing:19.704533pt;}
.ws11a{word-spacing:19.913600pt;}
.wsac{word-spacing:20.331733pt;}
.ws37{word-spacing:20.540800pt;}
.wsb3{word-spacing:21.168000pt;}
.wsf1{word-spacing:21.429333pt;}
.ws132{word-spacing:22.213333pt;}
.ws7b{word-spacing:23.258667pt;}
.ws104{word-spacing:23.833600pt;}
.ws120{word-spacing:23.990400pt;}
.ws90{word-spacing:24.304000pt;}
.ws124{word-spacing:24.565333pt;}
.wse5{word-spacing:25.767467pt;}
.wsca{word-spacing:33.322667pt;}
.wsc7{word-spacing:155.647991pt;}
.wsc5{word-spacing:248.874660pt;}
._21{margin-left:-8.760000pt;}
._2{margin-left:-6.536533pt;}
._6{margin-left:-4.780800pt;}
._3{margin-left:-3.808000pt;}
._b{margin-left:-2.902400pt;}
._1{margin-left:-1.774933pt;}
._5{width:0.994133pt;}
._7{width:2.034137pt;}
._4{width:3.293851pt;}
._0{width:4.966400pt;}
._1f{width:6.634661pt;}
._c{width:8.150400pt;}
._d{width:10.035193pt;}
._e{width:11.156257pt;}
._f{width:12.112000pt;}
._9{width:13.386659pt;}
._a{width:14.884267pt;}
._8{width:15.854921pt;}
._29{width:20.288000pt;}
._2a{width:27.248000pt;}
._28{width:39.808000pt;}
._23{width:48.080000pt;}
._24{width:50.920000pt;}
._26{width:64.920000pt;}
._22{width:69.160000pt;}
._27{width:71.760000pt;}
._20{width:77.480000pt;}
._25{width:81.460800pt;}
._18{width:164.155724pt;}
._12{width:165.828267pt;}
._1c{width:200.601600pt;}
._11{width:209.877333pt;}
._19{width:220.245333pt;}
._15{width:238.293333pt;}
._10{width:256.853324pt;}
._16{width:261.888000pt;}
._1e{width:272.469305pt;}
._14{width:332.671993pt;}
._1d{width:379.946639pt;}
._1b{width:487.423972pt;}
._1a{width:594.901305pt;}
._13{width:676.334905pt;}
._17{width:744.021305pt;}
.fs10{font-size:28.000000pt;}
.fse{font-size:36.586667pt;}
.fs9{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs3{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fsc{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:66.293333pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:4.143738pt;}
.yc{bottom:7.146667pt;}
.y48{bottom:24.031738pt;}
.y1b{bottom:61.786667pt;}
.y15{bottom:69.080000pt;}
.y46{bottom:70.229599pt;}
.y45{bottom:80.897599pt;}
.y1a{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y29a{bottom:89.477336pt;}
.y34b{bottom:89.638021pt;}
.y44{bottom:91.565599pt;}
.y84{bottom:94.199481pt;}
.ye9{bottom:94.780529pt;}
.yb8{bottom:94.786929pt;}
.y11b{bottom:94.793329pt;}
.y17e{bottom:95.767069pt;}
.y259{bottom:95.779869pt;}
.y14f{bottom:95.786269pt;}
.y1c3{bottom:95.792669pt;}
.y236{bottom:95.831069pt;}
.y274{bottom:95.850269pt;}
.y182{bottom:96.287996pt;}
.y186{bottom:96.301063pt;}
.y30e{bottom:98.776815pt;}
.y19{bottom:101.040000pt;}
.y299{bottom:101.477336pt;}
.y34a{bottom:101.638021pt;}
.y43{bottom:102.233599pt;}
.y1e9{bottom:102.543467pt;}
.y1e6{bottom:102.544128pt;}
.y83{bottom:110.193081pt;}
.ye8{bottom:110.774129pt;}
.y30d{bottom:110.776815pt;}
.yb7{bottom:110.780529pt;}
.y11a{bottom:110.786929pt;}
.y17d{bottom:111.767069pt;}
.y258{bottom:111.773469pt;}
.y14e{bottom:111.779869pt;}
.y1c2{bottom:111.786269pt;}
.y235{bottom:111.824669pt;}
.y273{bottom:111.843869pt;}
.y181{bottom:112.281596pt;}
.y185{bottom:112.294663pt;}
.y42{bottom:112.901599pt;}
.y349{bottom:113.638021pt;}
.y1e8{bottom:115.876800pt;}
.y1e5{bottom:115.877462pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y30c{bottom:122.776815pt;}
.y41{bottom:123.569599pt;}
.y298{bottom:125.522136pt;}
.y348{bottom:125.638021pt;}
.y82{bottom:126.186681pt;}
.yb6{bottom:126.774129pt;}
.y119{bottom:126.780529pt;}
.y257{bottom:127.767069pt;}
.y14d{bottom:127.773469pt;}
.y1c1{bottom:127.779869pt;}
.y17c{bottom:127.792669pt;}
.y234{bottom:127.818269pt;}
.y272{bottom:127.837469pt;}
.y180{bottom:128.287996pt;}
.y184{bottom:128.288263pt;}
.y1e7{bottom:129.210133pt;}
.y1e4{bottom:129.210795pt;}
.y40{bottom:134.237599pt;}
.y30b{bottom:134.776815pt;}
.y347{bottom:137.638021pt;}
.y16{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y17{bottom:140.293333pt;}
.y297{bottom:141.515736pt;}
.y81{bottom:142.180281pt;}
.y118{bottom:142.774129pt;}
.ye7{bottom:142.780529pt;}
.yb5{bottom:142.806129pt;}
.y14c{bottom:143.767069pt;}
.y1c0{bottom:143.773469pt;}
.y17b{bottom:143.786269pt;}
.y256{bottom:143.805469pt;}
.y233{bottom:143.811869pt;}
.y271{bottom:143.831069pt;}
.y17f{bottom:144.281596pt;}
.y183{bottom:144.281863pt;}
.y3f{bottom:144.905599pt;}
.y30a{bottom:146.776815pt;}
.y346{bottom:149.638021pt;}
.y2d1{bottom:156.318021pt;}
.y296{bottom:157.509336pt;}
.y80{bottom:158.173881pt;}
.ye6{bottom:158.774129pt;}
.y309{bottom:158.776815pt;}
.yb4{bottom:158.799729pt;}
.y1bf{bottom:159.767069pt;}
.y14b{bottom:159.773469pt;}
.y17a{bottom:159.779869pt;}
.y255{bottom:159.799069pt;}
.y232{bottom:159.805469pt;}
.y270{bottom:159.824669pt;}
.y345{bottom:161.638021pt;}
.y2d0{bottom:168.318021pt;}
.y308{bottom:170.776815pt;}
.y295{bottom:173.502936pt;}
.y344{bottom:173.638021pt;}
.y7f{bottom:174.167481pt;}
.ye5{bottom:174.780529pt;}
.yb3{bottom:174.793329pt;}
.y14a{bottom:175.767069pt;}
.y179{bottom:175.773469pt;}
.y254{bottom:175.792669pt;}
.y231{bottom:175.799069pt;}
.y1e3{bottom:175.805469pt;}
.y26f{bottom:175.818269pt;}
.y21c{bottom:175.850249pt;}
.y4d{bottom:178.988139pt;}
.y2cf{bottom:180.318021pt;}
.y307{bottom:182.776815pt;}
.y343{bottom:185.638021pt;}
.y294{bottom:189.496536pt;}
.y7e{bottom:190.161081pt;}
.y19b{bottom:190.598796pt;}
.ye4{bottom:190.774129pt;}
.yb2{bottom:190.786929pt;}
.y4c{bottom:190.988139pt;}
.y178{bottom:191.767069pt;}
.y149{bottom:191.779869pt;}
.y253{bottom:191.786269pt;}
.y230{bottom:191.792669pt;}
.y1be{bottom:191.799069pt;}
.y26e{bottom:191.811869pt;}
.y21b{bottom:191.843849pt;}
.y2ce{bottom:192.318021pt;}
.y306{bottom:194.776815pt;}
.y342{bottom:197.638021pt;}
.y4b{bottom:202.988139pt;}
.y19a{bottom:203.932129pt;}
.y2cd{bottom:204.318021pt;}
.y293{bottom:205.490136pt;}
.y7d{bottom:206.154681pt;}
.y305{bottom:206.776815pt;}
.yb1{bottom:206.780529pt;}
.ye3{bottom:206.806129pt;}
.y117{bottom:206.812529pt;}
.y148{bottom:207.773469pt;}
.y252{bottom:207.779869pt;}
.y22f{bottom:207.786269pt;}
.y1bd{bottom:207.792669pt;}
.y26d{bottom:207.805469pt;}
.y21a{bottom:207.837449pt;}
.y341{bottom:209.638021pt;}
.y4a{bottom:214.988139pt;}
.y2cc{bottom:216.318021pt;}
.y304{bottom:218.776815pt;}
.y292{bottom:221.483736pt;}
.y340{bottom:221.638021pt;}
.y7c{bottom:222.148281pt;}
.yb0{bottom:222.774129pt;}
.ye2{bottom:222.799729pt;}
.y116{bottom:222.806129pt;}
.y147{bottom:223.767069pt;}
.y251{bottom:223.773469pt;}
.y22e{bottom:223.779869pt;}
.y1bc{bottom:223.786269pt;}
.y26c{bottom:223.799069pt;}
.y219{bottom:223.831049pt;}
.y2cb{bottom:228.318021pt;}
.y303{bottom:230.776815pt;}
.y33f{bottom:233.638021pt;}
.y291{bottom:237.477336pt;}
.y7b{bottom:238.141881pt;}
.yaf{bottom:238.793329pt;}
.y115{bottom:238.799729pt;}
.y250{bottom:239.767069pt;}
.y146{bottom:239.773469pt;}
.y1bb{bottom:239.779869pt;}
.y177{bottom:239.786269pt;}
.y26b{bottom:239.792669pt;}
.y218{bottom:239.824649pt;}
.y302{bottom:242.776815pt;}
.y33e{bottom:245.638021pt;}
.y2ca{bottom:252.318021pt;}
.y290{bottom:253.490136pt;}
.y7a{bottom:254.135481pt;}
.y301{bottom:254.776815pt;}
.yae{bottom:254.786929pt;}
.y114{bottom:254.793329pt;}
.y145{bottom:255.767069pt;}
.y1ba{bottom:255.773469pt;}
.y176{bottom:255.779869pt;}
.y26a{bottom:255.786269pt;}
.y24f{bottom:255.805449pt;}
.y217{bottom:255.818249pt;}
.y33d{bottom:257.638021pt;}
.y3d{bottom:262.857869pt;}
.y2c9{bottom:264.318021pt;}
.y300{bottom:266.776815pt;}
.y28f{bottom:269.483736pt;}
.y33c{bottom:269.638021pt;}
.y79{bottom:270.129081pt;}
.yad{bottom:270.780529pt;}
.y113{bottom:270.786929pt;}
.y1b9{bottom:271.767069pt;}
.y175{bottom:271.773469pt;}
.y269{bottom:271.779869pt;}
.y22d{bottom:271.792669pt;}
.y24e{bottom:271.799049pt;}
.y203{bottom:271.805449pt;}
.y216{bottom:271.811849pt;}
.y144{bottom:271.843849pt;}
.y2c8{bottom:276.318021pt;}
.y2ff{bottom:278.776815pt;}
.y33b{bottom:281.638021pt;}
.y3c{bottom:282.857869pt;}
.y28e{bottom:285.477336pt;}
.y78{bottom:286.122681pt;}
.yac{bottom:286.774129pt;}
.y112{bottom:286.780529pt;}
.y174{bottom:287.767069pt;}
.y268{bottom:287.773469pt;}
.y1b8{bottom:287.779869pt;}
.y22c{bottom:287.786269pt;}
.y24d{bottom:287.792649pt;}
.y1e2{bottom:287.799049pt;}
.y215{bottom:287.805449pt;}
.y143{bottom:287.837449pt;}
.y2c7{bottom:288.318021pt;}
.y2fe{bottom:290.776815pt;}
.y33a{bottom:293.638021pt;}
.y3b{bottom:298.857869pt;}
.y2c6{bottom:300.318021pt;}
.y28d{bottom:301.586136pt;}
.y77{bottom:302.116281pt;}
.y111{bottom:302.774129pt;}
.y2fd{bottom:302.776815pt;}
.ye1{bottom:302.778396pt;}
.yab{bottom:302.786929pt;}
.y173{bottom:303.767069pt;}
.y1b7{bottom:303.773469pt;}
.y22b{bottom:303.779869pt;}
.y24c{bottom:303.786249pt;}
.y1e1{bottom:303.792649pt;}
.y214{bottom:303.799049pt;}
.y142{bottom:303.831049pt;}
.y339{bottom:305.638021pt;}
.ya{bottom:306.382667pt;}
.y2c5{bottom:312.318021pt;}
.y2fc{bottom:314.776815pt;}
.y3a{bottom:314.857869pt;}
.y28c{bottom:317.579736pt;}
.y338{bottom:317.638021pt;}
.y76{bottom:318.109881pt;}
.ye0{bottom:318.774129pt;}
.yaa{bottom:318.780529pt;}
.y110{bottom:318.838129pt;}
.y1b6{bottom:319.767069pt;}
.y22a{bottom:319.773469pt;}
.y24b{bottom:319.779849pt;}
.y1e0{bottom:319.786249pt;}
.y213{bottom:319.792649pt;}
.y267{bottom:319.811849pt;}
.y141{bottom:319.824649pt;}
.y2c4{bottom:324.318021pt;}
.y2fb{bottom:326.776815pt;}
.y337{bottom:329.638021pt;}
.y39{bottom:330.857869pt;}
.y28b{bottom:333.573336pt;}
.y75{bottom:334.103481pt;}
.ya9{bottom:334.774129pt;}
.y10f{bottom:334.831729pt;}
.y172{bottom:335.767069pt;}
.y24a{bottom:335.773449pt;}
.y1df{bottom:335.779849pt;}
.y212{bottom:335.786249pt;}
.y1b5{bottom:335.792649pt;}
.y266{bottom:335.805449pt;}
.y140{bottom:335.818249pt;}
.y2c3{bottom:336.318021pt;}
.y2fa{bottom:338.776815pt;}
.y336{bottom:341.638021pt;}
.yd{bottom:343.546667pt;}
.y38{bottom:346.857869pt;}
.y2c2{bottom:348.318021pt;}
.y28a{bottom:349.566936pt;}
.y74{bottom:350.097081pt;}
.ya8{bottom:350.774129pt;}
.y2f9{bottom:350.776815pt;}
.ydf{bottom:350.786929pt;}
.y10e{bottom:350.825329pt;}
.y9{bottom:351.724000pt;}
.y249{bottom:351.767049pt;}
.y1de{bottom:351.773449pt;}
.y211{bottom:351.779849pt;}
.y1b4{bottom:351.786249pt;}
.y171{bottom:351.792649pt;}
.y265{bottom:351.799049pt;}
.y13f{bottom:351.811849pt;}
.y335{bottom:353.638021pt;}
.y2c1{bottom:360.318021pt;}
.y2f8{bottom:362.776815pt;}
.y37{bottom:362.857869pt;}
.y289{bottom:365.560536pt;}
.y334{bottom:365.638021pt;}
.y73{bottom:366.090681pt;}
.ya7{bottom:366.774129pt;}
.yde{bottom:366.780529pt;}
.y10d{bottom:366.818929pt;}
.y1dd{bottom:367.767049pt;}
.y210{bottom:367.773449pt;}
.y1b3{bottom:367.779849pt;}
.y170{bottom:367.786249pt;}
.y264{bottom:367.792649pt;}
.y13e{bottom:367.805449pt;}
.y2f7{bottom:374.776815pt;}
.y333{bottom:377.638021pt;}
.y288{bottom:381.554136pt;}
.y72{bottom:382.084281pt;}
.ydd{bottom:382.774129pt;}
.y10c{bottom:382.812529pt;}
.y36{bottom:382.857869pt;}
.y20f{bottom:383.767049pt;}
.y1b2{bottom:383.773449pt;}
.y16f{bottom:383.779849pt;}
.y263{bottom:383.786249pt;}
.y13d{bottom:383.799049pt;}
.y2c0{bottom:384.318021pt;}
.yb{bottom:386.533333pt;}
.y2f6{bottom:386.776815pt;}
.y332{bottom:389.638021pt;}
.y2bf{bottom:396.318021pt;}
.y8{bottom:397.065333pt;}
.y287{bottom:397.547736pt;}
.y71{bottom:398.077881pt;}
.ya6{bottom:398.774129pt;}
.y2f5{bottom:398.776815pt;}
.ydc{bottom:398.780529pt;}
.y10b{bottom:398.806129pt;}
.y35{bottom:398.857869pt;}
.y1b1{bottom:399.767049pt;}
.y16e{bottom:399.773449pt;}
.y262{bottom:399.779849pt;}
.y13c{bottom:399.792649pt;}
.y229{bottom:399.818249pt;}
.y331{bottom:401.638021pt;}
.y34e{bottom:405.637980pt;}
.y2be{bottom:408.318021pt;}
.y2f4{bottom:410.776815pt;}
.y286{bottom:413.541336pt;}
.y330{bottom:413.638021pt;}
.y70{bottom:414.084281pt;}
.ydb{bottom:414.774129pt;}
.y10a{bottom:414.799729pt;}
.ya5{bottom:414.806129pt;}
.y34{bottom:414.857869pt;}
.y16d{bottom:415.767049pt;}
.y202{bottom:415.773449pt;}
.y13b{bottom:415.786249pt;}
.y228{bottom:415.811849pt;}
.y248{bottom:415.824649pt;}
.y34d{bottom:417.637980pt;}
.y2bd{bottom:420.318021pt;}
.y2f3{bottom:422.776815pt;}
.y32f{bottom:425.638021pt;}
.y285{bottom:429.534936pt;}
.y34c{bottom:429.637980pt;}
.y6f{bottom:430.077881pt;}
.yda{bottom:430.786929pt;}
.y109{bottom:430.793329pt;}
.ya4{bottom:430.799729pt;}
.y33{bottom:430.857869pt;}
.y1b0{bottom:431.767049pt;}
.y13a{bottom:431.779849pt;}
.y16c{bottom:431.805449pt;}
.y247{bottom:431.818249pt;}
.y2bc{bottom:432.318021pt;}
.y11{bottom:433.826667pt;}
.y2f2{bottom:434.776815pt;}
.y32e{bottom:437.638021pt;}
.y7{bottom:442.406667pt;}
.y2bb{bottom:444.318021pt;}
.y284{bottom:445.528536pt;}
.y6e{bottom:446.109881pt;}
.y2f1{bottom:446.776815pt;}
.yd9{bottom:446.780529pt;}
.y108{bottom:446.786929pt;}
.ya3{bottom:446.793329pt;}
.y32{bottom:446.857869pt;}
.y261{bottom:447.767049pt;}
.y1af{bottom:447.771316pt;}
.y139{bottom:447.773449pt;}
.y16b{bottom:447.799049pt;}
.y246{bottom:447.811849pt;}
.y201{bottom:447.907890pt;}
.y32d{bottom:449.638021pt;}
.y2f0{bottom:458.776815pt;}
.y283{bottom:461.522136pt;}
.y32c{bottom:461.638021pt;}
.y6d{bottom:462.103481pt;}
.yd8{bottom:462.774129pt;}
.y107{bottom:462.780529pt;}
.ya2{bottom:462.786929pt;}
.y31{bottom:462.857869pt;}
.y138{bottom:463.767049pt;}
.y16a{bottom:463.792649pt;}
.y245{bottom:463.805449pt;}
.y260{bottom:463.811849pt;}
.y200{bottom:463.901490pt;}
.y2ba{bottom:468.318021pt;}
.y2ef{bottom:470.776815pt;}
.y32b{bottom:473.638021pt;}
.y282{bottom:477.515736pt;}
.y6c{bottom:478.097081pt;}
.y12{bottom:478.426667pt;}
.y106{bottom:478.774129pt;}
.ya1{bottom:478.780529pt;}
.y30{bottom:478.857869pt;}
.yd7{bottom:478.876570pt;}
.y1dc{bottom:479.773449pt;}
.y137{bottom:479.779849pt;}
.y169{bottom:479.786249pt;}
.y244{bottom:479.799049pt;}
.y20e{bottom:479.805449pt;}
.y1ff{bottom:479.895090pt;}
.y2b9{bottom:480.318021pt;}
.y2ee{bottom:482.776815pt;}
.y32a{bottom:485.638021pt;}
.y6{bottom:487.748000pt;}
.y2b8{bottom:492.318021pt;}
.y281{bottom:493.509336pt;}
.y6b{bottom:494.090681pt;}
.ya0{bottom:494.774129pt;}
.y2ed{bottom:494.776815pt;}
.y105{bottom:494.799729pt;}
.yd6{bottom:494.870170pt;}
.y1db{bottom:495.767049pt;}
.y136{bottom:495.773449pt;}
.y168{bottom:495.779849pt;}
.y243{bottom:495.792649pt;}
.y20d{bottom:495.799049pt;}
.y1ae{bottom:495.818249pt;}
.y1fe{bottom:495.888690pt;}
.y329{bottom:497.638021pt;}
.y2f{bottom:498.857869pt;}
.y2ec{bottom:506.776815pt;}
.y280{bottom:509.502936pt;}
.y328{bottom:509.638021pt;}
.y6a{bottom:510.084281pt;}
.y9f{bottom:510.780529pt;}
.y104{bottom:510.793329pt;}
.yd5{bottom:510.863770pt;}
.y135{bottom:511.767049pt;}
.y167{bottom:511.773449pt;}
.y242{bottom:511.786249pt;}
.y20c{bottom:511.792649pt;}
.y1ad{bottom:511.811849pt;}
.y1fd{bottom:511.882290pt;}
.y2e{bottom:514.857869pt;}
.y2eb{bottom:518.776815pt;}
.y327{bottom:521.638021pt;}
.y1c{bottom:524.093333pt;}
.y27f{bottom:525.496536pt;}
.y69{bottom:526.077881pt;}
.y9e{bottom:526.774129pt;}
.y103{bottom:526.786929pt;}
.yd4{bottom:526.857370pt;}
.y2b7{bottom:526.988021pt;}
.y166{bottom:527.767049pt;}
.y134{bottom:527.773449pt;}
.y241{bottom:527.779849pt;}
.y1da{bottom:527.786249pt;}
.y1ac{bottom:527.805449pt;}
.y1fc{bottom:527.875890pt;}
.y2ea{bottom:530.776815pt;}
.y2d{bottom:530.857869pt;}
.y5{bottom:533.089333pt;}
.y326{bottom:533.638021pt;}
.y2b6{bottom:538.988021pt;}
.y27e{bottom:541.490136pt;}
.y68{bottom:542.077881pt;}
.y2e9{bottom:542.776815pt;}
.y102{bottom:542.780529pt;}
.yd3{bottom:542.850970pt;}
.y9d{bottom:542.870170pt;}
.y133{bottom:543.767049pt;}
.y240{bottom:543.773449pt;}
.y1d9{bottom:543.779849pt;}
.y165{bottom:543.792649pt;}
.y1ab{bottom:543.799049pt;}
.y1fb{bottom:543.869490pt;}
.y325{bottom:545.638021pt;}
.y2c{bottom:550.857869pt;}
.y2b5{bottom:550.988021pt;}
.y2e8{bottom:554.776815pt;}
.y27d{bottom:557.483736pt;}
.y324{bottom:557.638021pt;}
.y67{bottom:558.103481pt;}
.y101{bottom:558.774129pt;}
.yd2{bottom:558.844570pt;}
.y9c{bottom:558.863770pt;}
.y23f{bottom:559.767049pt;}
.y1d8{bottom:559.773449pt;}
.y132{bottom:559.779849pt;}
.y164{bottom:559.786249pt;}
.y1aa{bottom:559.792649pt;}
.y1fa{bottom:559.863090pt;}
.ye{bottom:561.706667pt;}
.y2e7{bottom:566.776815pt;}
.y2b{bottom:566.857869pt;}
.y2b4{bottom:568.318021pt;}
.y323{bottom:569.638021pt;}
.y27c{bottom:573.477336pt;}
.y66{bottom:574.097081pt;}
.y100{bottom:574.786929pt;}
.yd1{bottom:574.838170pt;}
.y9b{bottom:574.857370pt;}
.y1d7{bottom:575.767049pt;}
.y131{bottom:575.773449pt;}
.y163{bottom:575.779849pt;}
.y1a9{bottom:575.786249pt;}
.y1f9{bottom:575.856690pt;}
.y2e6{bottom:578.776815pt;}
.y2b3{bottom:580.318021pt;}
.y322{bottom:581.638021pt;}
.y2a{bottom:582.857869pt;}
.y27b{bottom:589.477336pt;}
.y65{bottom:590.090681pt;}
.y2e5{bottom:590.776815pt;}
.yff{bottom:590.780529pt;}
.yd0{bottom:590.831770pt;}
.y9a{bottom:590.850970pt;}
.y130{bottom:591.767049pt;}
.y1d6{bottom:591.771316pt;}
.y162{bottom:591.773449pt;}
.y1a8{bottom:591.779849pt;}
.y20b{bottom:591.786249pt;}
.y1f8{bottom:591.850290pt;}
.y2b2{bottom:592.318021pt;}
.y321{bottom:593.638021pt;}
.y29{bottom:598.857869pt;}
.y2e4{bottom:602.776815pt;}
.y320{bottom:605.638021pt;}
.y64{bottom:606.084281pt;}
.yfe{bottom:606.774129pt;}
.ycf{bottom:606.825370pt;}
.y99{bottom:606.844570pt;}
.y161{bottom:607.767049pt;}
.y1a7{bottom:607.773449pt;}
.y20a{bottom:607.779849pt;}
.y12f{bottom:607.786249pt;}
.y1f7{bottom:607.843890pt;}
.y2b1{bottom:609.648021pt;}
.y28{bottom:614.857869pt;}
.y31f{bottom:617.638021pt;}
.y2b0{bottom:621.648021pt;}
.y63{bottom:622.077881pt;}
.yfd{bottom:622.774129pt;}
.yce{bottom:622.818970pt;}
.y98{bottom:622.838170pt;}
.y1a6{bottom:623.767049pt;}
.y160{bottom:623.773449pt;}
.y12e{bottom:623.779849pt;}
.y1f6{bottom:623.837490pt;}
.y189{bottom:626.300019pt;}
.y31e{bottom:629.638021pt;}
.y27{bottom:630.857869pt;}
.y2af{bottom:633.648021pt;}
.y62{bottom:638.084281pt;}
.yfc{bottom:638.786929pt;}
.ycd{bottom:638.812570pt;}
.y97{bottom:638.831770pt;}
.y15f{bottom:639.767049pt;}
.y12d{bottom:639.773449pt;}
.y27a{bottom:639.779849pt;}
.y1a5{bottom:639.805490pt;}
.y227{bottom:639.824690pt;}
.y1f5{bottom:639.831090pt;}
.y188{bottom:641.410685pt;}
.y31d{bottom:641.638021pt;}
.y26{bottom:650.857869pt;}
.y2ae{bottom:650.978021pt;}
.y31c{bottom:653.638021pt;}
.y61{bottom:654.077881pt;}
.yfb{bottom:654.780529pt;}
.ycc{bottom:654.806170pt;}
.y96{bottom:654.825370pt;}
.y12c{bottom:655.767049pt;}
.y279{bottom:655.773449pt;}
.y1a4{bottom:655.799090pt;}
.y226{bottom:655.818290pt;}
.y1f4{bottom:655.824690pt;}
.y209{bottom:655.831090pt;}
.y1d5{bottom:655.837490pt;}
.y199{bottom:660.230683pt;}
.y2ad{bottom:662.978021pt;}
.y2e3{bottom:664.110107pt;}
.y31b{bottom:665.638021pt;}
.y60{bottom:670.154762pt;}
.yfa{bottom:670.774129pt;}
.ycb{bottom:670.799770pt;}
.y95{bottom:670.818970pt;}
.y15e{bottom:671.767049pt;}
.y1a3{bottom:671.792690pt;}
.y12b{bottom:671.799090pt;}
.y225{bottom:671.811890pt;}
.y1f3{bottom:671.818290pt;}
.y208{bottom:671.824690pt;}
.y1d4{bottom:671.831090pt;}
.y2ac{bottom:674.978021pt;}
.y198{bottom:676.433350pt;}
.y31a{bottom:677.638021pt;}
.y5f{bottom:686.148362pt;}
.yf9{bottom:686.786970pt;}
.yca{bottom:686.793370pt;}
.y94{bottom:686.812570pt;}
.y25f{bottom:687.773490pt;}
.y1a2{bottom:687.786290pt;}
.y12a{bottom:687.792690pt;}
.y224{bottom:687.805490pt;}
.y1f2{bottom:687.811890pt;}
.y207{bottom:687.818290pt;}
.y1d3{bottom:687.824690pt;}
.y2e2{bottom:688.110107pt;}
.y319{bottom:689.638021pt;}
.y4{bottom:691.756000pt;}
.y2ab{bottom:692.308021pt;}
.y197{bottom:692.561350pt;}
.y2e1{bottom:700.110107pt;}
.y318{bottom:701.638021pt;}
.y5e{bottom:702.141962pt;}
.yf8{bottom:702.780570pt;}
.yc9{bottom:702.786970pt;}
.y93{bottom:702.806170pt;}
.y25e{bottom:703.767090pt;}
.y15d{bottom:703.779890pt;}
.y129{bottom:703.786290pt;}
.y223{bottom:703.799090pt;}
.y1f1{bottom:703.805490pt;}
.y206{bottom:703.811890pt;}
.y1d2{bottom:703.818290pt;}
.y2aa{bottom:704.308021pt;}
.y196{bottom:708.689350pt;}
.y317{bottom:713.638021pt;}
.y25{bottom:715.153878pt;}
.y2e0{bottom:716.110107pt;}
.y2a9{bottom:716.308021pt;}
.y5d{bottom:718.135562pt;}
.yc8{bottom:718.780570pt;}
.yf7{bottom:718.793370pt;}
.y92{bottom:718.799770pt;}
.y15c{bottom:719.773490pt;}
.y128{bottom:719.779890pt;}
.y222{bottom:719.792690pt;}
.y1f0{bottom:719.799090pt;}
.y205{bottom:719.805490pt;}
.y1d1{bottom:719.811890pt;}
.y2df{bottom:724.110107pt;}
.y195{bottom:724.817350pt;}
.y13{bottom:725.040000pt;}
.y316{bottom:725.638021pt;}
.y2a8{bottom:733.638021pt;}
.y24{bottom:733.824544pt;}
.y5c{bottom:734.129162pt;}
.yc7{bottom:734.774170pt;}
.yf6{bottom:734.786970pt;}
.y91{bottom:734.793370pt;}
.y15b{bottom:735.767090pt;}
.y127{bottom:735.773490pt;}
.y221{bottom:735.786290pt;}
.y1ef{bottom:735.792690pt;}
.y204{bottom:735.799090pt;}
.y1d0{bottom:735.805490pt;}
.y2de{bottom:736.110107pt;}
.y315{bottom:737.638021pt;}
.y194{bottom:740.945350pt;}
.y2a7{bottom:745.638021pt;}
.y314{bottom:749.638021pt;}
.y5b{bottom:750.122762pt;}
.yc6{bottom:750.774170pt;}
.yf5{bottom:750.780570pt;}
.y90{bottom:750.786970pt;}
.y126{bottom:751.767090pt;}
.y220{bottom:751.779890pt;}
.y1ee{bottom:751.786290pt;}
.y1a1{bottom:751.792690pt;}
.y1cf{bottom:751.799090pt;}
.y25d{bottom:751.805490pt;}
.y2dd{bottom:752.110107pt;}
.y193{bottom:757.073350pt;}
.y2a6{bottom:757.638021pt;}
.y2dc{bottom:760.110107pt;}
.y313{bottom:761.638021pt;}
.y23{bottom:765.857358pt;}
.y5a{bottom:766.116362pt;}
.yf4{bottom:766.774170pt;}
.y8f{bottom:766.780570pt;}
.y125{bottom:767.767090pt;}
.y21f{bottom:767.773490pt;}
.y1ed{bottom:767.779890pt;}
.y15a{bottom:767.786290pt;}
.y1ce{bottom:767.792690pt;}
.y25c{bottom:767.799090pt;}
.y192{bottom:773.201350pt;}
.y312{bottom:773.638021pt;}
.y59{bottom:782.109962pt;}
.y8e{bottom:782.774170pt;}
.yc5{bottom:782.780570pt;}
.yf3{bottom:782.831996pt;}
.y21e{bottom:783.767090pt;}
.y1ec{bottom:783.773490pt;}
.y159{bottom:783.779890pt;}
.y1cd{bottom:783.786290pt;}
.y25b{bottom:783.792690pt;}
.y2db{bottom:784.110107pt;}
.y2a5{bottom:785.638021pt;}
.y191{bottom:789.329350pt;}
.y2da{bottom:796.110107pt;}
.y2a4{bottom:797.638021pt;}
.y58{bottom:798.103562pt;}
.yc4{bottom:798.774170pt;}
.y8d{bottom:798.793370pt;}
.yf2{bottom:798.825596pt;}
.y1eb{bottom:799.767090pt;}
.y158{bottom:799.773490pt;}
.y1cc{bottom:799.779890pt;}
.y124{bottom:799.786290pt;}
.y22{bottom:800.513358pt;}
.y3{bottom:805.081333pt;}
.y190{bottom:805.457350pt;}
.y311{bottom:809.638021pt;}
.y2a3{bottom:813.638021pt;}
.y57{bottom:814.097162pt;}
.y8c{bottom:814.786970pt;}
.yc3{bottom:814.818970pt;}
.yf1{bottom:814.819196pt;}
.y157{bottom:815.767090pt;}
.y1cb{bottom:815.773490pt;}
.y123{bottom:815.779890pt;}
.y21d{bottom:815.799090pt;}
.y23e{bottom:815.869736pt;}
.y2d9{bottom:820.110107pt;}
.y18f{bottom:821.585350pt;}
.y310{bottom:821.638021pt;}
.y56{bottom:830.090762pt;}
.y8b{bottom:830.780570pt;}
.yc2{bottom:830.812570pt;}
.yf0{bottom:830.812796pt;}
.y1ca{bottom:831.767090pt;}
.y1ea{bottom:831.771357pt;}
.y122{bottom:831.773490pt;}
.y1a0{bottom:831.779890pt;}
.y156{bottom:831.792690pt;}
.y23d{bottom:831.863336pt;}
.y2d8{bottom:832.110107pt;}
.y30f{bottom:833.638021pt;}
.y21{bottom:835.169358pt;}
.y18e{bottom:837.713350pt;}
.y2a2{bottom:845.638021pt;}
.y55{bottom:846.084362pt;}
.y8a{bottom:846.774170pt;}
.yc1{bottom:846.806170pt;}
.yef{bottom:846.806396pt;}
.y121{bottom:847.767090pt;}
.y19f{bottom:847.773490pt;}
.y155{bottom:847.786290pt;}
.y1c9{bottom:847.818536pt;}
.y23c{bottom:847.856936pt;}
.y18d{bottom:853.841350pt;}
.y2d7{bottom:856.110107pt;}
.y2{bottom:857.092000pt;}
.y2a1{bottom:857.638021pt;}
.y54{bottom:862.077962pt;}
.y89{bottom:862.786970pt;}
.yc0{bottom:862.799770pt;}
.yee{bottom:862.799996pt;}
.y120{bottom:863.767090pt;}
.y25a{bottom:863.773490pt;}
.y154{bottom:863.779890pt;}
.y1c8{bottom:863.812136pt;}
.y23b{bottom:863.850536pt;}
.y2d6{bottom:868.110107pt;}
.y2a0{bottom:869.638021pt;}
.y20{bottom:869.825358pt;}
.y18c{bottom:869.969350pt;}
.y53{bottom:878.090762pt;}
.y88{bottom:878.780570pt;}
.ybf{bottom:878.793370pt;}
.yed{bottom:878.793596pt;}
.y1{bottom:879.748000pt;}
.y19e{bottom:879.767090pt;}
.y153{bottom:879.773490pt;}
.y11f{bottom:879.786290pt;}
.y1c7{bottom:879.805736pt;}
.y23a{bottom:879.844136pt;}
.y278{bottom:879.863336pt;}
.y2d5{bottom:880.110107pt;}
.y29f{bottom:881.638021pt;}
.y2d4{bottom:892.110107pt;}
.y29e{bottom:893.638021pt;}
.y18b{bottom:893.766683pt;}
.y52{bottom:894.084362pt;}
.y87{bottom:894.774170pt;}
.ybe{bottom:894.786970pt;}
.yec{bottom:894.787196pt;}
.y152{bottom:895.767090pt;}
.y19d{bottom:895.773490pt;}
.y11e{bottom:895.779890pt;}
.y1c6{bottom:895.799336pt;}
.y239{bottom:895.837736pt;}
.y277{bottom:895.856936pt;}
.y2d3{bottom:904.110107pt;}
.y29d{bottom:905.638021pt;}
.y18a{bottom:905.766683pt;}
.y51{bottom:910.077962pt;}
.y86{bottom:910.774170pt;}
.ybd{bottom:910.780570pt;}
.yeb{bottom:910.780796pt;}
.y19c{bottom:911.767090pt;}
.y11d{bottom:911.773490pt;}
.y151{bottom:911.786536pt;}
.y1c5{bottom:911.792936pt;}
.y238{bottom:911.831336pt;}
.y276{bottom:911.850536pt;}
.y29c{bottom:917.638021pt;}
.y1f{bottom:918.544515pt;}
.y3e{bottom:920.666829pt;}
.y50{bottom:926.077962pt;}
.ybc{bottom:926.774170pt;}
.yea{bottom:926.774396pt;}
.y85{bottom:926.898963pt;}
.y187{bottom:927.377848pt;}
.y11c{bottom:927.767090pt;}
.y150{bottom:927.780136pt;}
.y1c4{bottom:927.786536pt;}
.y237{bottom:927.824936pt;}
.y275{bottom:927.844136pt;}
.y2d2{bottom:928.110107pt;}
.y29b{bottom:929.638021pt;}
.y47{bottom:971.860026pt;}
.y1e{bottom:988.708515pt;}
.yb9{bottom:1001.355225pt;}
.y4e{bottom:1001.355306pt;}
.ybb{bottom:1001.561768pt;}
.y1d{bottom:1001.711182pt;}
.yba{bottom:1002.044515pt;}
.y4f{bottom:1002.048639pt;}
.h25{height:24.724000pt;}
.h4{height:29.333333pt;}
.h15{height:32.965333pt;}
.h18{height:35.320000pt;}
.h1f{height:35.541333pt;}
.h1e{height:35.578667pt;}
.h14{height:36.922667pt;}
.h22{height:37.674667pt;}
.h16{height:37.903999pt;}
.h27{height:38.080000pt;}
.h24{height:38.920000pt;}
.hc{height:40.618667pt;}
.h19{height:40.661333pt;}
.h26{height:40.724000pt;}
.h20{height:41.514667pt;}
.hb{height:41.984000pt;}
.h23{height:42.197333pt;}
.h13{height:47.093333pt;}
.h1d{height:47.472000pt;}
.h1b{height:47.741866pt;}
.h1a{height:49.653333pt;}
.h12{height:51.893333pt;}
.h3{height:51.916667pt;}
.h11{height:54.329067pt;}
.h1c{height:55.586458pt;}
.h2{height:59.333333pt;}
.hf{height:59.728337pt;}
.h10{height:59.744337pt;}
.h5{height:60.213542pt;}
.h17{height:63.111253pt;}
.hd{height:68.570667pt;}
.h21{height:89.514667pt;}
.h7{height:102.413333pt;}
.he{height:121.856000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:237.401326pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x10{left:30.080600pt;}
.xa{left:75.496002pt;}
.xb{left:82.430532pt;}
.xc{left:84.162800pt;}
.x12{left:86.252935pt;}
.x17{left:95.590535pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xe{left:240.726664pt;}
.x13{left:406.294802pt;}
.x14{left:416.961595pt;}
.x16{left:426.299194pt;}
.xf{left:480.566650pt;}
.xd{left:617.715454pt;}
.x15{left:658.727458pt;}
.x11{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; }
  