
    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_f283ed7373bc4ac1060a1623.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_5dd9428071782bbe96644551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_b1e6462fd39ebbe9e024f955.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_d0e3a301d1043f1b5a2ca280.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a8fec283523130deb5edf564.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_c7b8fd0f7e14830a20094ccc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963867;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_d3e704fe4a714d74c8726d40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931152;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_39a0e3c4e831a65ffeb0c1ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951660;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_cc5ae7e2e1069be7d88e777b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_389ff48f27c0c8de85e907b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_3c18a329411dccf0b56f06a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_3c18a329411dccf0b56f06a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;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_23c52a2b2ae6576da7690a1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e0f0d3d42c8371d15d39ef11.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871094;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_f86eb0ba28b4920628b7245a.woff2')format("woff");}.fff{font-family:fff;line-height:0.808105;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_9c1b925120ec273775170b24.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_314de45d2c6af850171763a2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.808105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7fefa07dfefcfa07d9d56bb5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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);}
.v2{vertical-align:-14.985000px;}
.v6{vertical-align:-13.185000px;}
.v9{vertical-align:-9.979800px;}
.v5{vertical-align:-5.341200px;}
.v8{vertical-align:-2.838600px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.422200px;}
.v7{vertical-align:18.892200px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.vb{vertical-align:30.000000px;}
.vc{vertical-align:42.285600px;}
.v4{vertical-align:54.000000px;}
.lsf{letter-spacing:-2.100000px;}
.ls17{letter-spacing:-1.998000px;}
.ls13{letter-spacing:-1.800000px;}
.ls16{letter-spacing:-1.680000px;}
.ls1f{letter-spacing:-1.665000px;}
.lse{letter-spacing:-1.500000px;}
.ls4{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.349800px;}
.ls12{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.225000px;}
.ls11{letter-spacing:-0.192284px;}
.ls14{letter-spacing:-0.164491px;}
.ls10{letter-spacing:-0.137346px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.006744px;}
.ls8{letter-spacing:0.139800px;}
.ls7{letter-spacing:0.240000px;}
.ls15{letter-spacing:2.496000px;}
.lsa{letter-spacing:8.771400px;}
.ls1c{letter-spacing:311.159400px;}
.ls1b{letter-spacing:330.275400px;}
.ls1a{letter-spacing:422.943000px;}
.ls1d{letter-spacing:540.501000px;}
.ls18{letter-spacing:585.892200px;}
.ls19{letter-spacing:742.421400px;}
.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;}
}
.ws2d{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.000000px;}
.ws78{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.250000px;}
.ws2e{word-spacing:-14.100000px;}
.ws0{word-spacing:-13.800000px;}
.ws75{word-spacing:-13.500000px;}
.wsa2{word-spacing:-12.000000px;}
.ws76{word-spacing:-11.520000px;}
.ws77{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.494000px;}
.ws104{word-spacing:-9.585000px;}
.ws73{word-spacing:-8.745000px;}
.wsf8{word-spacing:-8.395200px;}
.ws4{word-spacing:-6.558750px;}
.wsb9{word-spacing:-6.195835px;}
.wsf7{word-spacing:-3.132000px;}
.ws35{word-spacing:-3.120000px;}
.ws82{word-spacing:-2.970000px;}
.ws8f{word-spacing:-2.880000px;}
.wsc2{word-spacing:-2.760000px;}
.ws29{word-spacing:-2.700000px;}
.ws2b{word-spacing:-2.664000px;}
.ws3d{word-spacing:-2.580000px;}
.ws5e{word-spacing:-2.520000px;}
.ws69{word-spacing:-2.460000px;}
.ws2f{word-spacing:-2.340000px;}
.ws66{word-spacing:-2.280000px;}
.ws6{word-spacing:-2.268000px;}
.ws87{word-spacing:-2.208000px;}
.wsd0{word-spacing:-2.160000px;}
.ws7{word-spacing:-2.106000px;}
.ws20{word-spacing:-2.100000px;}
.wsd3{word-spacing:-1.968000px;}
.ws7b{word-spacing:-1.920000px;}
.ws42{word-spacing:-1.860000px;}
.wsa{word-spacing:-1.836000px;}
.ws7a{word-spacing:-1.800000px;}
.ws56{word-spacing:-1.740000px;}
.wsd1{word-spacing:-1.728000px;}
.wsa6{word-spacing:-1.680000px;}
.ws53{word-spacing:-1.620000px;}
.wsbf{word-spacing:-1.560000px;}
.wsda{word-spacing:-1.530000px;}
.ws1b{word-spacing:-1.500000px;}
.wsc7{word-spacing:-1.485000px;}
.ws3c{word-spacing:-1.440000px;}
.wsb5{word-spacing:-1.392000px;}
.wsbd{word-spacing:-1.380000px;}
.wscc{word-spacing:-1.344000px;}
.ws81{word-spacing:-1.320000px;}
.ws30{word-spacing:-1.200000px;}
.wsce{word-spacing:-1.152000px;}
.wsde{word-spacing:-1.056000px;}
.ws7f{word-spacing:-1.020000px;}
.wsf2{word-spacing:-0.972000px;}
.wsc0{word-spacing:-0.900000px;}
.wsf6{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.840000px;}
.ws122{word-spacing:-0.810000px;}
.ws67{word-spacing:-0.780000px;}
.ws1d{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.660000px;}
.ws55{word-spacing:-0.600000px;}
.wsca{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.540000px;}
.wsc8{word-spacing:-0.495000px;}
.wsd2{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.300000px;}
.wsb4{word-spacing:-0.288000px;}
.ws4c{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.180000px;}
.ws51{word-spacing:-0.120000px;}
.wsf4{word-spacing:-0.096000px;}
.wsfd{word-spacing:-0.060000px;}
.wsf1{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws102{word-spacing:0.048000px;}
.ws106{word-spacing:0.060000px;}
.ws80{word-spacing:0.120000px;}
.wsb2{word-spacing:0.137346px;}
.ws94{word-spacing:0.180000px;}
.wsb3{word-spacing:0.192284px;}
.wsff{word-spacing:0.240000px;}
.wsdb{word-spacing:0.315000px;}
.wsf3{word-spacing:0.384000px;}
.ws34{word-spacing:0.420000px;}
.ws84{word-spacing:0.432000px;}
.ws85{word-spacing:0.480000px;}
.ws115{word-spacing:0.495000px;}
.wsf5{word-spacing:0.528000px;}
.ws97{word-spacing:0.540000px;}
.ws8d{word-spacing:0.600000px;}
.ws2c{word-spacing:0.624000px;}
.ws11f{word-spacing:0.630000px;}
.wsc1{word-spacing:0.660000px;}
.ws1c{word-spacing:0.720000px;}
.wsa5{word-spacing:0.780000px;}
.wscd{word-spacing:0.816000px;}
.ws52{word-spacing:0.840000px;}
.ws27{word-spacing:0.900000px;}
.wsc5{word-spacing:0.945000px;}
.ws110{word-spacing:0.960000px;}
.wsa8{word-spacing:1.020000px;}
.ws8{word-spacing:1.080000px;}
.ws60{word-spacing:1.140000px;}
.ws12{word-spacing:1.200000px;}
.ws39{word-spacing:1.260000px;}
.wsec{word-spacing:1.320000px;}
.ws11{word-spacing:1.380000px;}
.wse1{word-spacing:1.440000px;}
.ws59{word-spacing:1.500000px;}
.ws91{word-spacing:1.560000px;}
.ws11b{word-spacing:1.575000px;}
.ws13{word-spacing:1.620000px;}
.ws24{word-spacing:1.680000px;}
.wsed{word-spacing:1.740000px;}
.wsc4{word-spacing:1.800000px;}
.wsd4{word-spacing:1.872000px;}
.ws71{word-spacing:1.890000px;}
.wsb0{word-spacing:1.968000px;}
.ws26{word-spacing:2.040000px;}
.ws3a{word-spacing:2.100000px;}
.ws9e{word-spacing:2.160000px;}
.ws120{word-spacing:2.205000px;}
.wsa7{word-spacing:2.220000px;}
.wsc3{word-spacing:2.280000px;}
.ws1f{word-spacing:2.340000px;}
.wsfc{word-spacing:2.400000px;}
.wsdf{word-spacing:2.460000px;}
.wsaa{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.wsa4{word-spacing:2.640000px;}
.ws114{word-spacing:2.655000px;}
.wsbe{word-spacing:2.700000px;}
.ws116{word-spacing:2.745000px;}
.ws6a{word-spacing:2.760000px;}
.ws103{word-spacing:2.784000px;}
.ws119{word-spacing:2.790000px;}
.ws1e{word-spacing:2.820000px;}
.ws49{word-spacing:2.940000px;}
.wsc6{word-spacing:2.970000px;}
.ws88{word-spacing:2.976000px;}
.ws47{word-spacing:3.000000px;}
.wsba{word-spacing:3.060000px;}
.ws98{word-spacing:3.120000px;}
.ws5b{word-spacing:3.180000px;}
.wscf{word-spacing:3.264000px;}
.ws72{word-spacing:3.285000px;}
.ws50{word-spacing:3.300000px;}
.wscb{word-spacing:3.360000px;}
.ws107{word-spacing:3.420000px;}
.wsaf{word-spacing:3.465000px;}
.ws7c{word-spacing:3.540000px;}
.ws3e{word-spacing:3.600000px;}
.wsef{word-spacing:3.660000px;}
.ws86{word-spacing:3.696000px;}
.ws14{word-spacing:3.720000px;}
.ws117{word-spacing:3.780000px;}
.ws22{word-spacing:3.840000px;}
.ws10c{word-spacing:3.900000px;}
.ws25{word-spacing:4.140000px;}
.ws17{word-spacing:4.260000px;}
.ws70{word-spacing:4.275000px;}
.ws92{word-spacing:4.320000px;}
.ws113{word-spacing:4.365000px;}
.ws64{word-spacing:4.380000px;}
.ws38{word-spacing:4.440000px;}
.ws6d{word-spacing:4.500000px;}
.ws108{word-spacing:4.560000px;}
.wsc{word-spacing:4.590000px;}
.ws40{word-spacing:4.620000px;}
.ws83{word-spacing:4.656000px;}
.ws8a{word-spacing:4.725000px;}
.ws90{word-spacing:4.740000px;}
.ws11c{word-spacing:4.770000px;}
.ws10d{word-spacing:4.800000px;}
.ws2a{word-spacing:4.860000px;}
.wsc9{word-spacing:4.905000px;}
.ws18{word-spacing:4.980000px;}
.ws11a{word-spacing:4.995000px;}
.ws61{word-spacing:5.040000px;}
.ws9f{word-spacing:5.100000px;}
.ws7e{word-spacing:5.160000px;}
.ws48{word-spacing:5.340000px;}
.ws8b{word-spacing:5.400000px;}
.wsa0{word-spacing:5.460000px;}
.wsee{word-spacing:5.520000px;}
.ws8e{word-spacing:5.580000px;}
.ws9a{word-spacing:5.640000px;}
.ws111{word-spacing:5.670000px;}
.ws7d{word-spacing:5.700000px;}
.wsb1{word-spacing:5.760000px;}
.wsdc{word-spacing:5.820000px;}
.wsae{word-spacing:5.940000px;}
.ws46{word-spacing:6.000000px;}
.ws58{word-spacing:6.060000px;}
.ws11e{word-spacing:6.075000px;}
.wsab{word-spacing:6.120000px;}
.ws43{word-spacing:6.180000px;}
.wsbb{word-spacing:6.240000px;}
.ws4d{word-spacing:6.300000px;}
.ws6e{word-spacing:6.420000px;}
.ws8c{word-spacing:6.480000px;}
.ws15{word-spacing:6.540000px;}
.ws118{word-spacing:6.570000px;}
.ws28{word-spacing:6.600000px;}
.wsb{word-spacing:6.642000px;}
.ws32{word-spacing:6.660000px;}
.wsdd{word-spacing:6.720000px;}
.ws41{word-spacing:6.840000px;}
.ws44{word-spacing:6.900000px;}
.wsf{word-spacing:6.960000px;}
.wsad{word-spacing:7.020000px;}
.ws4e{word-spacing:7.140000px;}
.ws16{word-spacing:7.200000px;}
.ws9b{word-spacing:7.320000px;}
.ws21{word-spacing:7.380000px;}
.ws10{word-spacing:7.500000px;}
.ws68{word-spacing:7.620000px;}
.ws1a{word-spacing:7.740000px;}
.ws5c{word-spacing:7.800000px;}
.wsa1{word-spacing:7.860000px;}
.ws57{word-spacing:7.920000px;}
.ws9{word-spacing:7.938000px;}
.wsfe{word-spacing:7.980000px;}
.wsa9{word-spacing:8.040000px;}
.ws5d{word-spacing:8.100000px;}
.ws65{word-spacing:8.280000px;}
.ws33{word-spacing:8.340000px;}
.ws9c{word-spacing:8.400000px;}
.ws105{word-spacing:8.460000px;}
.ws89{word-spacing:8.685000px;}
.ws23{word-spacing:8.700000px;}
.ws95{word-spacing:8.760000px;}
.ws10a{word-spacing:8.820000px;}
.wsf0{word-spacing:8.880000px;}
.ws10f{word-spacing:8.940000px;}
.ws4b{word-spacing:9.000000px;}
.ws11d{word-spacing:9.180000px;}
.ws99{word-spacing:9.240000px;}
.wse4{word-spacing:9.300000px;}
.ws79{word-spacing:9.360000px;}
.ws9d{word-spacing:9.480000px;}
.ws54{word-spacing:9.660000px;}
.ws3f{word-spacing:9.780000px;}
.wse2{word-spacing:10.020000px;}
.ws96{word-spacing:10.260000px;}
.ws5f{word-spacing:10.320000px;}
.wse0{word-spacing:10.380000px;}
.ws109{word-spacing:10.440000px;}
.ws6b{word-spacing:10.740000px;}
.wsd{word-spacing:10.800000px;}
.ws10b{word-spacing:10.860000px;}
.ws62{word-spacing:10.980000px;}
.ws63{word-spacing:11.100000px;}
.ws101{word-spacing:11.250000px;}
.wsac{word-spacing:11.700000px;}
.ws121{word-spacing:11.970000px;}
.ws5a{word-spacing:13.020000px;}
.wse3{word-spacing:13.200000px;}
.wse{word-spacing:15.000000px;}
.ws10e{word-spacing:16.020000px;}
.ws6c{word-spacing:16.140000px;}
.ws4f{word-spacing:16.740000px;}
.ws93{word-spacing:16.920000px;}
.ws100{word-spacing:17.160000px;}
.wsbc{word-spacing:19.320000px;}
.ws45{word-spacing:19.680000px;}
.ws112{word-spacing:56.790000px;}
.wsb7{word-spacing:57.078446px;}
.wsa3{word-spacing:57.190874px;}
.wsb6{word-spacing:57.204616px;}
.wsd9{word-spacing:59.357819px;}
.wsb8{word-spacing:82.849862px;}
.wse8{word-spacing:88.435800px;}
.wse9{word-spacing:107.040600px;}
.ws74{word-spacing:117.460200px;}
.wsf9{word-spacing:139.736400px;}
.wseb{word-spacing:166.615800px;}
.wse6{word-spacing:166.630800px;}
.wsea{word-spacing:180.115800px;}
.wsd5{word-spacing:199.691400px;}
.wsd8{word-spacing:264.793800px;}
.wsd6{word-spacing:266.797200px;}
.wsd7{word-spacing:282.534000px;}
.wsfa{word-spacing:292.647600px;}
.wsfb{word-spacing:701.678400px;}
.wse5{word-spacing:911.496600px;}
.wse7{word-spacing:1906.013400px;}
._40{margin-left:-16.513800px;}
._a{margin-left:-7.847400px;}
._7{margin-left:-6.746400px;}
._9{margin-left:-4.812000px;}
._5{margin-left:-3.350400px;}
._0{margin-left:-2.230200px;}
._4{margin-left:-1.014000px;}
._1{width:1.080000px;}
._2{width:2.122200px;}
._e{width:3.151800px;}
._3{width:4.503600px;}
._6{width:5.786400px;}
._12{width:7.348200px;}
._8{width:8.634000px;}
._d{width:9.702000px;}
._11{width:11.502000px;}
._10{width:15.018000px;}
._f{width:30.000000px;}
._16{width:51.488592px;}
._2a{width:58.374158px;}
._36{width:63.607200px;}
._c{width:66.471600px;}
._13{width:69.441600px;}
._15{width:72.823392px;}
._18{width:78.957192px;}
._1b{width:88.051992px;}
._19{width:91.197192px;}
._1a{width:94.279392px;}
._1d{width:97.209600px;}
._17{width:103.374192px;}
._37{width:125.501400px;}
._1c{width:128.125238px;}
._2d{width:180.130800px;}
._38{width:183.052008px;}
._20{width:197.850000px;}
._3d{width:199.563000px;}
._1f{width:202.668600px;}
._3f{width:213.034200px;}
._3a{width:214.036200px;}
._2c{width:216.508200px;}
._39{width:227.466000px;}
._3b{width:228.468000px;}
._1e{width:249.056400px;}
._3c{width:251.257800px;}
._3e{width:263.529600px;}
._22{width:278.293800px;}
._46{width:284.224800px;}
._25{width:286.856400px;}
._28{width:287.858400px;}
._29{width:292.795200px;}
._26{width:297.579600px;}
._24{width:299.434800px;}
._27{width:301.104000px;}
._45{width:303.412800px;}
._23{width:305.293200px;}
._2e{width:322.201200px;}
._21{width:394.833600px;}
._44{width:395.895000px;}
._47{width:513.928800px;}
._14{width:535.240128px;}
._43{width:559.228200px;}
._35{width:566.386800px;}
._30{width:570.316800px;}
._41{width:674.915400px;}
._42{width:677.702400px;}
._32{width:731.248800px;}
._2f{width:746.366400px;}
._b{width:927.288000px;}
._2b{width:936.137400px;}
._33{width:1228.684800px;}
._34{width:1378.936800px;}
._31{width:1421.650800px;}
.fc4{color:rgb(77,81,86);}
.fc3{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:26.235000px;}
.fs10{font-size:27.415200px;}
.fsc{font-size:27.469200px;}
.fse{font-size:27.475800px;}
.fs11{font-size:27.493200px;}
.fsf{font-size:33.629400px;}
.fsb{font-size:33.695400px;}
.fsd{font-size:33.703800px;}
.fs12{font-size:33.724800px;}
.fs9{font-size:34.980000px;}
.fsa{font-size:41.750400px;}
.fs6{font-size:41.976000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.y159{bottom:-18.184967px;}
.y236{bottom:-6.801600px;}
.y0{bottom:0.000000px;}
.y15e{bottom:0.304950px;}
.y1bf{bottom:0.662700px;}
.y19c{bottom:1.386300px;}
.y158{bottom:3.139050px;}
.y2{bottom:58.163250px;}
.y49{bottom:65.397150px;}
.y1{bottom:73.163250px;}
.y48{bottom:81.147150px;}
.y46{bottom:125.043300px;}
.yf0{bottom:125.043450px;}
.y4b{bottom:125.822850px;}
.y2a6{bottom:131.083200px;}
.yb7{bottom:137.793300px;}
.yef{bottom:137.793450px;}
.y4a{bottom:139.322850px;}
.y84{bottom:140.532750px;}
.y124{bottom:140.958600px;}
.y45{bottom:141.539550px;}
.y18b{bottom:141.539700px;}
.y13e{bottom:141.862800px;}
.y244{bottom:143.878650px;}
.y2a5{bottom:144.583200px;}
.y44{bottom:150.543300px;}
.yee{bottom:150.543450px;}
.y156{bottom:154.289700px;}
.y83{bottom:156.022350px;}
.y2a4{bottom:158.083200px;}
.y13d{bottom:158.682300px;}
.y243{bottom:162.714150px;}
.yb6{bottom:163.293300px;}
.y19a{bottom:163.293450px;}
.y1f1{bottom:163.293600px;}
.y43{bottom:167.039550px;}
.yed{bottom:167.039700px;}
.y82{bottom:171.511800px;}
.y123{bottom:172.789350px;}
.y13c{bottom:175.501650px;}
.y199{bottom:176.043450px;}
.y1f0{bottom:176.043600px;}
.yb5{bottom:179.789550px;}
.y18a{bottom:180.307200px;}
.y242{bottom:181.549500px;}
.y81{bottom:187.001250px;}
.y122{bottom:188.704650px;}
.y198{bottom:188.793450px;}
.y2a3{bottom:188.972700px;}
.y13b{bottom:192.321300px;}
.y155{bottom:193.057200px;}
.y217{bottom:194.072400px;}
.y189{bottom:196.250100px;}
.y24a{bottom:198.174750px;}
.y241{bottom:200.385000px;}
.y80{bottom:202.490850px;}
.y197{bottom:205.289700px;}
.yec{bottom:205.807200px;}
.y39{bottom:206.146950px;}
.y1a{bottom:206.160150px;}
.y13a{bottom:209.140800px;}
.y154{bottom:209.331150px;}
.y2a2{bottom:210.346200px;}
.y216{bottom:210.654300px;}
.y188{bottom:212.193150px;}
.yeb{bottom:217.905300px;}
.y7f{bottom:217.980300px;}
.yb4{bottom:218.557050px;}
.y1ef{bottom:218.557350px;}
.y240{bottom:219.220350px;}
.y38{bottom:222.339300px;}
.y19{bottom:222.660150px;}
.y153{bottom:225.605250px;}
.y139{bottom:225.960300px;}
.y215{bottom:227.236200px;}
.y187{bottom:228.136050px;}
.yea{bottom:230.003400px;}
.y29f{bottom:231.719700px;}
.y7e{bottom:233.469900px;}
.y249{bottom:233.909850px;}
.yb3{bottom:234.194100px;}
.y1ee{bottom:234.896850px;}
.y121{bottom:236.450550px;}
.y23f{bottom:238.055850px;}
.y37{bottom:238.531650px;}
.y18{bottom:239.160150px;}
.y152{bottom:241.879350px;}
.ye9{bottom:242.101500px;}
.y138{bottom:242.779800px;}
.y214{bottom:243.818250px;}
.y186{bottom:244.079100px;}
.y1e1{bottom:247.620750px;}
.y7d{bottom:248.959350px;}
.yb2{bottom:249.831150px;}
.y1ed{bottom:251.236500px;}
.y120{bottom:252.365850px;}
.y2a1{bottom:253.093200px;}
.ye8{bottom:254.199600px;}
.y36{bottom:254.724150px;}
.y17{bottom:255.660150px;}
.y23e{bottom:256.891200px;}
.y151{bottom:258.153300px;}
.y137{bottom:259.599300px;}
.y185{bottom:260.022150px;}
.y213{bottom:260.400150px;}
.y1e0{bottom:261.120750px;}
.y7c{bottom:264.448800px;}
.yb1{bottom:265.468050px;}
.ye7{bottom:266.297700px;}
.y1ec{bottom:267.576000px;}
.y11f{bottom:268.281300px;}
.y35{bottom:270.916500px;}
.y16{bottom:272.160150px;}
.y150{bottom:274.427250px;}
.y2a0{bottom:274.466850px;}
.y1df{bottom:274.620750px;}
.y23d{bottom:275.726700px;}
.y184{bottom:275.965050px;}
.y136{bottom:276.418800px;}
.y212{bottom:276.982050px;}
.y248{bottom:278.644950px;}
.y7b{bottom:279.938400px;}
.yb0{bottom:281.105100px;}
.y1eb{bottom:283.915650px;}
.y11e{bottom:284.196600px;}
.y34{bottom:287.108850px;}
.y1de{bottom:288.120750px;}
.y15{bottom:288.660150px;}
.ye6{bottom:289.778700px;}
.y14f{bottom:290.701350px;}
.y183{bottom:291.908100px;}
.y135{bottom:293.238300px;}
.y211{bottom:293.563950px;}
.y23c{bottom:294.562050px;}
.y7a{bottom:295.428000px;}
.y29e{bottom:295.840350px;}
.y247{bottom:296.512500px;}
.yaf{bottom:296.742150px;}
.y11d{bottom:300.111900px;}
.y1ea{bottom:301.005300px;}
.y1dd{bottom:301.620750px;}
.ye5{bottom:303.278700px;}
.y33{bottom:303.301350px;}
.y14{bottom:305.160150px;}
.y14e{bottom:306.975300px;}
.y134{bottom:310.057800px;}
.y210{bottom:310.145850px;}
.y79{bottom:310.917450px;}
.yae{bottom:312.379200px;}
.y23b{bottom:313.397550px;}
.y246{bottom:314.380050px;}
.y11c{bottom:316.027200px;}
.ye4{bottom:316.778700px;}
.y29d{bottom:317.213850px;}
.y1e9{bottom:318.094800px;}
.y32{bottom:320.243700px;}
.y1be{bottom:322.727700px;}
.y14d{bottom:323.249400px;}
.y78{bottom:326.406900px;}
.y20f{bottom:326.727900px;}
.y133{bottom:326.877300px;}
.yad{bottom:328.016250px;}
.ye3{bottom:330.278700px;}
.y11b{bottom:331.942650px;}
.y23a{bottom:332.232900px;}
.y245{bottom:332.247600px;}
.y1dc{bottom:333.899550px;}
.y1e8{bottom:335.184450px;}
.y31{bottom:337.186050px;}
.y13{bottom:338.160150px;}
.y29a{bottom:338.587350px;}
.y14c{bottom:339.523350px;}
.y1b8{bottom:341.260800px;}
.y77{bottom:341.896500px;}
.y20e{bottom:343.309800px;}
.yac{bottom:343.653300px;}
.y132{bottom:343.696800px;}
.ye2{bottom:343.778700px;}
.y1db{bottom:347.069312px;}
.y11a{bottom:347.857950px;}
.y1e7{bottom:352.273950px;}
.y30{bottom:354.128400px;}
.y1b7{bottom:354.760800px;}
.y14b{bottom:355.797450px;}
.y1d3{bottom:355.965545px;}
.ye1{bottom:357.278700px;}
.y76{bottom:357.385950px;}
.y20d{bottom:359.141700px;}
.yab{bottom:359.290350px;}
.y29c{bottom:359.961000px;}
.y131{bottom:360.516300px;}
.y119{bottom:363.773250px;}
.y1b6{bottom:368.260800px;}
.y270{bottom:368.909850px;}
.y1e6{bottom:369.363600px;}
.y2f{bottom:371.070750px;}
.y14a{bottom:372.071400px;}
.y75{bottom:372.875550px;}
.yaa{bottom:374.927400px;}
.y20c{bottom:374.973600px;}
.ye0{bottom:375.156150px;}
.y130{bottom:377.335800px;}
.y2f4{bottom:379.452750px;}
.y118{bottom:379.688550px;}
.y2cc{bottom:379.793850px;}
.y29b{bottom:381.334500px;}
.y1b5{bottom:381.760800px;}
.y1ca{bottom:381.899400px;}
.y1d4{bottom:382.284137px;}
.y1e5{bottom:386.453100px;}
.y12{bottom:387.660150px;}
.y2e{bottom:388.013250px;}
.y149{bottom:388.345500px;}
.y74{bottom:388.365000px;}
.ydf{bottom:388.656150px;}
.yd7{bottom:388.671600px;}
.ya9{bottom:390.564300px;}
.y20b{bottom:390.805500px;}
.y2f3{bottom:392.688300px;}
.y12f{bottom:394.155300px;}
.y117{bottom:395.603850px;}
.y2cb{bottom:396.537600px;}
.y26e{bottom:399.792600px;}
.yde{bottom:402.156150px;}
.y11{bottom:402.660150px;}
.y299{bottom:402.708000px;}
.y73{bottom:403.854450px;}
.y148{bottom:404.619450px;}
.y2d{bottom:404.955600px;}
.y2f2{bottom:405.923850px;}
.ya8{bottom:406.201350px;}
.y20a{bottom:406.637550px;}
.y26d{bottom:407.292600px;}
.y1d5{bottom:408.602729px;}
.y1cb{bottom:410.792250px;}
.y12e{bottom:410.974800px;}
.y116{bottom:411.519300px;}
.y2ca{bottom:413.281500px;}
.y26f{bottom:414.792600px;}
.ydd{bottom:415.656150px;}
.y2f1{bottom:419.159400px;}
.y72{bottom:419.344050px;}
.y1e4{bottom:420.632400px;}
.y147{bottom:420.893550px;}
.ya7{bottom:421.838400px;}
.y2c{bottom:421.897950px;}
.y209{bottom:422.469450px;}
.y298{bottom:424.081500px;}
.y1c6{bottom:426.860550px;}
.y115{bottom:427.434600px;}
.y1cd{bottom:427.606950px;}
.y12d{bottom:427.794300px;}
.y1cf{bottom:428.429400px;}
.y2c9{bottom:430.025400px;}
.y2f0{bottom:432.394800px;}
.y10{bottom:432.660150px;}
.ydc{bottom:433.564650px;}
.y71{bottom:434.833500px;}
.y1d6{bottom:434.907613px;}
.y26b{bottom:436.153050px;}
.ya6{bottom:437.475450px;}
.y1e3{bottom:437.721900px;}
.y146{bottom:437.917500px;}
.y208{bottom:438.301350px;}
.y2b{bottom:438.840300px;}
.y1ce{bottom:440.728200px;}
.y114{bottom:443.349900px;}
.y26a{bottom:443.653050px;}
.y12c{bottom:444.613800px;}
.y295{bottom:445.455000px;}
.y2ef{bottom:445.630350px;}
.y1cc{bottom:445.975200px;}
.y1d1{bottom:446.081850px;}
.y2c8{bottom:446.769150px;}
.y1c0{bottom:446.851050px;}
.ydb{bottom:447.064650px;}
.yf{bottom:447.660150px;}
.y70{bottom:450.323100px;}
.y26c{bottom:451.153050px;}
.y1d0{bottom:452.448300px;}
.ya5{bottom:453.112500px;}
.y207{bottom:454.133250px;}
.y1e2{bottom:454.811550px;}
.y145{bottom:454.941450px;}
.y2a{bottom:455.782650px;}
.y2ee{bottom:458.865900px;}
.y113{bottom:459.265200px;}
.yda{bottom:460.564650px;}
.y12b{bottom:460.683300px;}
.y1c1{bottom:460.886100px;}
.y1d7{bottom:461.226205px;}
.y2c7{bottom:463.513050px;}
.y6f{bottom:465.812550px;}
.y297{bottom:466.828650px;}
.ya4{bottom:468.749550px;}
.y1c8{bottom:469.720050px;}
.y1c4{bottom:470.816550px;}
.y144{bottom:471.965550px;}
.y2ed{bottom:472.101450px;}
.y268{bottom:472.513350px;}
.y29{bottom:472.725150px;}
.y1c2{bottom:472.766100px;}
.yd9{bottom:474.064650px;}
.y112{bottom:475.180650px;}
.y12a{bottom:476.752800px;}
.ye{bottom:477.660150px;}
.y1c5{bottom:478.492950px;}
.y267{bottom:480.013350px;}
.y2c6{bottom:480.256950px;}
.y6e{bottom:481.302150px;}
.ya3{bottom:484.386600px;}
.y2ec{bottom:485.337000px;}
.y269{bottom:487.513350px;}
.y1d8{bottom:487.524236px;}
.yd8{bottom:487.564650px;}
.y296{bottom:488.202150px;}
.y143{bottom:488.989500px;}
.y28{bottom:489.667500px;}
.y111{bottom:491.095950px;}
.y21f{bottom:491.760900px;}
.yd{bottom:492.660150px;}
.y129{bottom:492.822300px;}
.y6d{bottom:496.791600px;}
.y2c5{bottom:497.000700px;}
.y1c9{bottom:497.242050px;}
.y2eb{bottom:498.572550px;}
.ya2{bottom:500.023500px;}
.yd6{bottom:505.442100px;}
.y142{bottom:506.013600px;}
.y27{bottom:506.609850px;}
.y110{bottom:507.011250px;}
.yc{bottom:507.660150px;}
.y265{bottom:508.873650px;}
.y128{bottom:508.891800px;}
.y294{bottom:509.569050px;}
.y1c3{bottom:510.051150px;}
.y1d2{bottom:510.546150px;}
.y2ea{bottom:511.808100px;}
.y6c{bottom:512.281050px;}
.y2c4{bottom:513.744600px;}
.y1d9{bottom:513.842828px;}
.ya1{bottom:515.660550px;}
.y264{bottom:516.373650px;}
.yd5{bottom:518.942100px;}
.y21e{bottom:522.643800px;}
.yb{bottom:522.660150px;}
.y10f{bottom:522.926550px;}
.y141{bottom:523.037550px;}
.y26{bottom:523.552200px;}
.y266{bottom:523.873650px;}
.y127{bottom:524.961300px;}
.y2e9{bottom:525.043650px;}
.y6b{bottom:527.770650px;}
.y2c3{bottom:530.488500px;}
.ya0{bottom:531.297600px;}
.yd4{bottom:532.442100px;}
.ya{bottom:537.660150px;}
.y2e8{bottom:538.279200px;}
.y10e{bottom:538.842000px;}
.ycf{bottom:539.192100px;}
.y1c7{bottom:539.332200px;}
.y140{bottom:540.061650px;}
.y1da{bottom:540.161420px;}
.y25{bottom:540.494700px;}
.y126{bottom:541.030800px;}
.y6a{bottom:543.260100px;}
.y21d{bottom:544.004100px;}
.y263{bottom:545.234100px;}
.yd3{bottom:545.942100px;}
.y9f{bottom:546.934650px;}
.y2c2{bottom:547.232250px;}
.y2e7{bottom:551.514750px;}
.y274{bottom:552.368250px;}
.yce{bottom:552.692100px;}
.y262{bottom:552.734100px;}
.y10d{bottom:554.757300px;}
.y28f{bottom:554.898600px;}
.y13f{bottom:557.085600px;}
.y125{bottom:557.100300px;}
.y24{bottom:557.437050px;}
.y69{bottom:558.749700px;}
.yd2{bottom:559.442100px;}
.y9e{bottom:562.571700px;}
.y2c1{bottom:563.976150px;}
.y2e6{bottom:564.750150px;}
.y21c{bottom:565.364550px;}
.y28e{bottom:567.648750px;}
.y273{bottom:568.868250px;}
.y9{bottom:569.160150px;}
.y10c{bottom:570.672600px;}
.yd1{bottom:572.942100px;}
.y68{bottom:574.239150px;}
.y23{bottom:574.379400px;}
.y196{bottom:577.493400px;}
.y2e5{bottom:577.985700px;}
.y9d{bottom:578.208750px;}
.y2c0{bottom:580.720050px;}
.y272{bottom:585.368250px;}
.yd0{bottom:586.442100px;}
.y10b{bottom:586.587900px;}
.y21b{bottom:586.724850px;}
.y67{bottom:589.728750px;}
.y2e4{bottom:591.221250px;}
.y22{bottom:591.321750px;}
.y17a{bottom:593.012400px;}
.y9c{bottom:593.845800px;}
.y195{bottom:594.654000px;}
.y2bf{bottom:597.463950px;}
.y271{bottom:601.868250px;}
.y10a{bottom:602.503200px;}
.ycd{bottom:604.319550px;}
.y2e3{bottom:604.456800px;}
.y66{bottom:605.218200px;}
.y261{bottom:605.738700px;}
.y179{bottom:606.512400px;}
.y182{bottom:607.101150px;}
.y21a{bottom:608.085300px;}
.y21{bottom:608.264100px;}
.y9b{bottom:609.482850px;}
.y194{bottom:611.814750px;}
.y2be{bottom:614.207700px;}
.y2e2{bottom:617.692350px;}
.ycc{bottom:617.819550px;}
.y109{bottom:618.418500px;}
.y8{bottom:618.660150px;}
.y260{bottom:619.238700px;}
.y28d{bottom:620.060250px;}
.y65{bottom:620.707650px;}
.y181{bottom:623.044050px;}
.y9a{bottom:625.119750px;}
.y20{bottom:625.206600px;}
.y193{bottom:628.975350px;}
.y219{bottom:629.445600px;}
.y2e1{bottom:630.927900px;}
.y2bd{bottom:630.951600px;}
.ycb{bottom:631.319550px;}
.y25f{bottom:632.738700px;}
.y7{bottom:633.660150px;}
.y108{bottom:634.333950px;}
.y64{bottom:636.197250px;}
.y28c{bottom:636.560250px;}
.y180{bottom:638.987100px;}
.y218{bottom:640.017000px;}
.y99{bottom:640.756800px;}
.y1f{bottom:642.148950px;}
.y2e0{bottom:644.163450px;}
.y192{bottom:646.136100px;}
.y25e{bottom:646.238850px;}
.y293{bottom:646.284300px;}
.y2bc{bottom:647.695500px;}
.y6{bottom:648.660150px;}
.y107{bottom:650.249250px;}
.y63{bottom:651.686700px;}
.y28b{bottom:653.060250px;}
.y17f{bottom:654.930000px;}
.y2df{bottom:657.399000px;}
.y1e{bottom:659.091300px;}
.y292{bottom:659.784300px;}
.y191{bottom:663.296850px;}
.y5{bottom:663.660150px;}
.y2bb{bottom:664.439250px;}
.y106{bottom:666.164550px;}
.y62{bottom:667.176300px;}
.yca{bottom:667.785600px;}
.y28a{bottom:669.560250px;}
.y2de{bottom:670.634550px;}
.y17e{bottom:670.873050px;}
.y98{bottom:672.030900px;}
.y291{bottom:673.284300px;}
.y1d{bottom:676.033650px;}
.y25d{bottom:677.121600px;}
.y4{bottom:678.660150px;}
.y190{bottom:680.457600px;}
.y2ba{bottom:681.183150px;}
.y105{bottom:682.080000px;}
.y61{bottom:682.665750px;}
.y206{bottom:683.219250px;}
.y2dd{bottom:683.870100px;}
.yc9{bottom:684.383550px;}
.y25c{bottom:684.621600px;}
.y289{bottom:686.060250px;}
.y290{bottom:686.784300px;}
.y17d{bottom:686.816100px;}
.y97{bottom:687.667950px;}
.y1c{bottom:692.976150px;}
.y2dc{bottom:697.105650px;}
.y18f{bottom:697.618200px;}
.y2b9{bottom:697.927050px;}
.y104{bottom:697.995300px;}
.y60{bottom:698.155200px;}
.y205{bottom:699.051150px;}
.yc8{bottom:700.981800px;}
.y288{bottom:702.560250px;}
.y17c{bottom:702.759000px;}
.y96{bottom:703.305000px;}
.y1b{bottom:709.918500px;}
.y3{bottom:710.160150px;}
.y2db{bottom:710.341200px;}
.y25b{bottom:713.481900px;}
.y5f{bottom:713.644800px;}
.y103{bottom:713.910600px;}
.y2b8{bottom:714.670950px;}
.y18e{bottom:714.778950px;}
.yc7{bottom:717.579750px;}
.y17b{bottom:718.702050px;}
.y287{bottom:719.060250px;}
.y25a{bottom:720.981900px;}
.y2da{bottom:723.576600px;}
.y5e{bottom:729.134250px;}
.y102{bottom:729.825900px;}
.y204{bottom:730.015950px;}
.y2b7{bottom:731.414700px;}
.y18d{bottom:731.939550px;}
.yc6{bottom:734.178000px;}
.y286{bottom:735.560250px;}
.y2d9{bottom:736.812300px;}
.y239{bottom:739.161150px;}
.y15c{bottom:740.730150px;}
.y178{bottom:741.329700px;}
.y203{bottom:745.015950px;}
.y5d{bottom:745.073850px;}
.y101{bottom:745.741200px;}
.y2b6{bottom:748.158600px;}
.y18c{bottom:749.100300px;}
.y259{bottom:749.842350px;}
.y2d8{bottom:750.047700px;}
.y95{bottom:750.216000px;}
.yc5{bottom:750.775950px;}
.y285{bottom:752.060250px;}
.y238{bottom:752.661150px;}
.y15b{bottom:754.230150px;}
.y1b4{bottom:754.614150px;}
.y177{bottom:754.829700px;}
.y258{bottom:757.342350px;}
.y202{bottom:760.015950px;}
.y5c{bottom:761.013300px;}
.y100{bottom:761.656500px;}
.y2d7{bottom:763.283250px;}
.y2b5{bottom:764.902350px;}
.y94{bottom:765.853050px;}
.y237{bottom:766.161150px;}
.yc4{bottom:767.374050px;}
.y15a{bottom:767.730150px;}
.y1b3{bottom:768.114150px;}
.y176{bottom:768.329700px;}
.y284{bottom:768.560250px;}
.y2d6{bottom:776.518800px;}
.y42{bottom:776.558700px;}
.y5b{bottom:776.952900px;}
.yff{bottom:777.571950px;}
.y1bd{bottom:780.775200px;}
.y201{bottom:781.376250px;}
.y93{bottom:781.490100px;}
.y2b4{bottom:781.646250px;}
.yc3{bottom:783.972150px;}
.y283{bottom:785.060250px;}
.y257{bottom:786.202650px;}
.y235{bottom:787.249200px;}
.y19b{bottom:789.202200px;}
.y2d5{bottom:789.754350px;}
.y157{bottom:790.178700px;}
.y15d{bottom:790.342200px;}
.y5a{bottom:792.892350px;}
.yfe{bottom:793.487250px;}
.y256{bottom:793.702650px;}
.y1bc{bottom:794.275200px;}
.y200{bottom:796.376250px;}
.y92{bottom:797.127150px;}
.y2b3{bottom:798.390150px;}
.y175{bottom:801.070050px;}
.y282{bottom:801.560250px;}
.y2d4{bottom:802.989900px;}
.y1fd{bottom:803.869650px;}
.y1bb{bottom:807.775200px;}
.y59{bottom:808.831800px;}
.yfd{bottom:809.402550px;}
.y1ff{bottom:811.376250px;}
.y91{bottom:812.764200px;}
.y22a{bottom:813.053863px;}
.y1b2{bottom:814.212975px;}
.y174{bottom:814.271297px;}
.y2b2{bottom:815.134050px;}
.y2d3{bottom:816.225450px;}
.yc2{bottom:817.168350px;}
.y281{bottom:818.060250px;}
.y1ba{bottom:821.275200px;}
.y255{bottom:822.563100px;}
.y1a7{bottom:823.142610px;}
.y16a{bottom:823.191920px;}
.y58{bottom:824.771400px;}
.yfc{bottom:825.318000px;}
.y41{bottom:825.822450px;}
.y1fe{bottom:826.376250px;}
.y90{bottom:828.401100px;}
.y254{bottom:830.063100px;}
.y220{bottom:830.851500px;}
.y22b{bottom:831.240615px;}
.y2b1{bottom:831.877800px;}
.yc1{bottom:833.766450px;}
.y280{bottom:834.560250px;}
.y1b9{bottom:834.775200px;}
.y57{bottom:840.710850px;}
.yfb{bottom:841.233150px;}
.y1a8{bottom:841.606347px;}
.y16b{bottom:843.704545px;}
.y8f{bottom:844.038150px;}
.y40{bottom:845.322450px;}
.y2d2{bottom:846.446550px;}
.y1fc{bottom:847.736700px;}
.y2b0{bottom:848.621700px;}
.y221{bottom:849.348300px;}
.y22c{bottom:849.716045px;}
.y27f{bottom:851.060250px;}
.y1f9{bottom:855.236700px;}
.y56{bottom:856.650450px;}
.yfa{bottom:857.148600px;}
.y253{bottom:858.923400px;}
.y8e{bottom:859.675200px;}
.y1a9{bottom:860.070085px;}
.y1fb{bottom:862.736700px;}
.y16c{bottom:864.230905px;}
.y2af{bottom:865.365450px;}
.y27e{bottom:867.560250px;}
.y222{bottom:867.822000px;}
.y22d{bottom:868.205222px;}
.y1f8{bottom:870.236700px;}
.y55{bottom:872.589900px;}
.yf9{bottom:873.063900px;}
.y8d{bottom:875.312250px;}
.yc0{bottom:877.462650px;}
.y1fa{bottom:877.736700px;}
.y1aa{bottom:878.554429px;}
.y252{bottom:880.283700px;}
.y2ae{bottom:882.109350px;}
.y27d{bottom:884.060250px;}
.y16d{bottom:884.743530px;}
.y19d{bottom:885.235050px;}
.y223{bottom:886.295850px;}
.y22e{bottom:886.687526px;}
.y251{bottom:887.783700px;}
.y54{bottom:888.529500px;}
.yf8{bottom:888.979200px;}
.y8c{bottom:890.949300px;}
.ybf{bottom:892.860750px;}
.y3f{bottom:894.586350px;}
.y1ab{bottom:897.018167px;}
.y2ad{bottom:898.853250px;}
.y1f7{bottom:899.110200px;}
.y27c{bottom:900.560250px;}
.y19e{bottom:904.269600px;}
.y1a5{bottom:904.323000px;}
.y53{bottom:904.468950px;}
.y224{bottom:904.769550px;}
.yf7{bottom:904.894500px;}
.y22f{bottom:905.162956px;}
.y16e{bottom:905.256155px;}
.y1a3{bottom:905.880000px;}
.y8b{bottom:906.586350px;}
.ybe{bottom:908.258850px;}
.y1a0{bottom:910.054650px;}
.y1f6{bottom:914.110200px;}
.y2d1{bottom:914.388750px;}
.y1ac{bottom:915.481905px;}
.y2ac{bottom:915.597150px;}
.y250{bottom:916.644150px;}
.y27b{bottom:917.060250px;}
.y164{bottom:917.172300px;}
.y3e{bottom:920.086350px;}
.y52{bottom:920.408400px;}
.yf6{bottom:920.809950px;}
.y8a{bottom:922.223400px;}
.y225{bottom:923.251050px;}
.y230{bottom:923.638387px;}
.ybd{bottom:923.656950px;}
.y24f{bottom:924.144150px;}
.y16f{bottom:925.768780px;}
.y1a4{bottom:928.555050px;}
.y2d0{bottom:931.374150px;}
.y2ab{bottom:932.340900px;}
.y27a{bottom:933.560250px;}
.y1ad{bottom:933.952511px;}
.y19f{bottom:934.638000px;}
.y51{bottom:936.348000px;}
.yf5{bottom:936.725250px;}
.y1a1{bottom:937.843350px;}
.y89{bottom:937.860450px;}
.y15f{bottom:938.338500px;}
.ybc{bottom:939.055050px;}
.y226{bottom:941.740050px;}
.y231{bottom:942.113817px;}
.y3d{bottom:945.586350px;}
.y170{bottom:946.281405px;}
.y2cf{bottom:948.359850px;}
.y2aa{bottom:949.084800px;}
.y279{bottom:950.060250px;}
.y50{bottom:952.287450px;}
.y1ae{bottom:952.429987px;}
.yf4{bottom:952.640550px;}
.y1f5{bottom:952.717800px;}
.y24e{bottom:953.004450px;}
.y88{bottom:953.497500px;}
.ybb{bottom:954.453150px;}
.y165{bottom:957.131850px;}
.y227{bottom:960.213900px;}
.y24d{bottom:960.504450px;}
.y232{bottom:960.609867px;}
.y168{bottom:965.242800px;}
.y2ce{bottom:965.345250px;}
.y2a9{bottom:965.828550px;}
.y278{bottom:966.560250px;}
.y171{bottom:966.814632px;}
.y4f{bottom:968.227050px;}
.y1f4{bottom:968.549700px;}
.yf3{bottom:968.555850px;}
.y87{bottom:969.134400px;}
.yba{bottom:969.851250px;}
.y1af{bottom:970.893724px;}
.y166{bottom:971.301300px;}
.y167{bottom:974.162700px;}
.y169{bottom:974.780700px;}
.y228{bottom:978.695250px;}
.y233{bottom:979.085298px;}
.y2cd{bottom:982.330800px;}
.y2a8{bottom:982.572450px;}
.y277{bottom:983.060250px;}
.y160{bottom:983.898900px;}
.y4e{bottom:984.166500px;}
.y1f3{bottom:984.381600px;}
.y86{bottom:984.771450px;}
.yb9{bottom:985.249350px;}
.y3c{bottom:986.640300px;}
.y172{bottom:987.327257px;}
.y1b0{bottom:989.364331px;}
.y24c{bottom:989.364750px;}
.y162{bottom:989.430750px;}
.y1a6{bottom:991.528050px;}
.y1a2{bottom:995.374650px;}
.y229{bottom:997.168950px;}
.y161{bottom:997.450200px;}
.y234{bottom:997.560728px;}
.y2a7{bottom:999.316350px;}
.y276{bottom:999.560250px;}
.y163{bottom:999.777450px;}
.y4d{bottom:1000.106100px;}
.y1f2{bottom:1000.213650px;}
.yf2{bottom:1000.386600px;}
.y85{bottom:1000.408500px;}
.yb8{bottom:1000.647450px;}
.y3b{bottom:1002.390300px;}
.y1b1{bottom:1007.828068px;}
.y173{bottom:1007.839882px;}
.y24b{bottom:1010.833950px;}
.y4c{bottom:1016.045550px;}
.y275{bottom:1016.060250px;}
.yf1{bottom:1016.301900px;}
.y3a{bottom:1018.140300px;}
.y47{bottom:1060.476300px;}
.h25{height:18.272338px;}
.h22{height:18.312728px;}
.h2a{height:18.324325px;}
.h1d{height:19.032615px;}
.h24{height:22.414126px;}
.h21{height:22.463714px;}
.h2c{height:22.477711px;}
.hf{height:23.019675px;}
.h1c{height:23.346569px;}
.h26{height:23.694538px;}
.h1f{height:24.373815px;}
.h13{height:24.499863px;}
.h17{height:24.609727px;}
.h1a{height:27.826805px;}
.h15{height:31.267090px;}
.h32{height:33.351562px;}
.h28{height:37.520508px;}
.h1e{height:37.924815px;}
.h10{height:39.484863px;}
.h18{height:39.594727px;}
.h16{height:40.664062px;}
.h12{height:41.660156px;}
.h8{height:41.689453px;}
.h9{height:42.117188px;}
.h11{height:42.234375px;}
.h2{height:47.381836px;}
.h30{height:47.487272px;}
.h31{height:47.487872px;}
.h4{height:47.513672px;}
.h5{height:47.961914px;}
.he{height:48.796875px;}
.ha{height:50.014160px;}
.h7{height:52.646484px;}
.h6{height:52.792969px;}
.h3{height:53.291016px;}
.hd{height:63.949219px;}
.h2d{height:67.520508px;}
.hb{height:67.587891px;}
.hc{height:69.741211px;}
.h2e{height:77.381836px;}
.h27{height:77.961914px;}
.h29{height:90.247514px;}
.h14{height:101.961914px;}
.h2f{height:107.961914px;}
.h23{height:236.016000px;}
.h1b{height:236.118000px;}
.h19{height:236.283000px;}
.h20{height:237.258000px;}
.h2b{height:239.211000px;}
.h0{height:1142.999700px;}
.h1{height:1143.000000px;}
.w2{width:327.400500px;}
.w4{width:327.402000px;}
.w3{width:328.762500px;}
.w0{width:887.882700px;}
.w1{width:888.000000px;}
.x50{left:-7.266750px;}
.x0{left:0.000000px;}
.x17{left:4.399588px;}
.x3{left:91.027500px;}
.x4f{left:102.066662px;}
.xa{left:108.035400px;}
.x45{left:109.777500px;}
.x4{left:112.287300px;}
.xf{left:114.572400px;}
.x31{left:117.534070px;}
.x10{left:119.064750px;}
.x54{left:120.129900px;}
.x52{left:123.504900px;}
.x55{left:124.566300px;}
.xe{left:126.785400px;}
.xd{left:129.295200px;}
.x27{left:131.912550px;}
.x32{left:135.317782px;}
.x4c{left:136.881450px;}
.x4b{left:138.011850px;}
.x4d{left:141.402600px;}
.x1{left:149.870400px;}
.x4e{left:154.232700px;}
.x11{left:164.728350px;}
.x28{left:166.272600px;}
.x51{left:167.490450px;}
.x12{left:177.484200px;}
.x2{left:189.549750px;}
.x5b{left:192.289350px;}
.x29{left:205.234650px;}
.x2a{left:231.962550px;}
.x2b{left:253.355400px;}
.x53{left:256.414650px;}
.x2c{left:287.715450px;}
.x2d{left:318.274650px;}
.x33{left:325.560900px;}
.x16{left:326.650050px;}
.xb{left:335.410650px;}
.x2e{left:346.536450px;}
.x56{left:370.160250px;}
.x2f{left:377.088000px;}
.x30{left:407.273250px;}
.x4a{left:411.314700px;}
.x8{left:419.205900px;}
.x5{left:452.444850px;}
.x24{left:457.775203px;}
.x48{left:458.819850px;}
.x47{left:459.997350px;}
.x23{left:461.256924px;}
.x46{left:463.942500px;}
.x13{left:469.452750px;}
.xc{left:471.194850px;}
.x6{left:473.704650px;}
.x18{left:475.689150px;}
.x25{left:479.036364px;}
.x5c{left:486.460650px;}
.x15{left:490.712550px;}
.x1d{left:492.483450px;}
.x44{left:496.677314px;}
.x14{left:499.452750px;}
.x19{left:510.048300px;}
.x49{left:520.807050px;}
.x1e{left:522.256650px;}
.x26{left:526.529700px;}
.x34{left:527.561850px;}
.x3d{left:539.754150px;}
.x1f{left:545.170350px;}
.x1a{left:548.993100px;}
.x35{left:550.499400px;}
.x9{left:563.181000px;}
.x59{left:577.513800px;}
.x58{left:585.948000px;}
.x3e{left:587.038050px;}
.x36{left:593.107500px;}
.x37{left:614.453400px;}
.x7{left:620.043600px;}
.x3f{left:639.675600px;}
.x20{left:641.380350px;}
.x38{left:648.737850px;}
.x39{left:658.736850px;}
.x1b{left:662.005050px;}
.x21{left:665.827800px;}
.x57{left:693.795000px;}
.x40{left:695.184150px;}
.x3a{left:707.429700px;}
.x41{left:709.729500px;}
.x5a{left:716.549850px;}
.x1c{left:720.803700px;}
.x3b{left:737.914050px;}
.x42{left:744.767850px;}
.x22{left:755.925900px;}
.x3c{left:769.167600px;}
.x43{left:772.967700px;}
@media print{
.v2{vertical-align:-13.320000pt;}
.v6{vertical-align:-11.720000pt;}
.v9{vertical-align:-8.870933pt;}
.v5{vertical-align:-4.747733pt;}
.v8{vertical-align:-2.523200pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:4.819733pt;}
.v7{vertical-align:16.793067pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.vb{vertical-align:26.666667pt;}
.vc{vertical-align:37.587200pt;}
.v4{vertical-align:48.000000pt;}
.lsf{letter-spacing:-1.866667pt;}
.ls17{letter-spacing:-1.776000pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls16{letter-spacing:-1.493333pt;}
.ls1f{letter-spacing:-1.480000pt;}
.lse{letter-spacing:-1.333333pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.310933pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.200000pt;}
.ls11{letter-spacing:-0.170919pt;}
.ls14{letter-spacing:-0.146214pt;}
.ls10{letter-spacing:-0.122085pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.005995pt;}
.ls8{letter-spacing:0.124267pt;}
.ls7{letter-spacing:0.213333pt;}
.ls15{letter-spacing:2.218667pt;}
.lsa{letter-spacing:7.796800pt;}
.ls1c{letter-spacing:276.586133pt;}
.ls1b{letter-spacing:293.578133pt;}
.ls1a{letter-spacing:375.949333pt;}
.ls1d{letter-spacing:480.445333pt;}
.ls18{letter-spacing:520.793067pt;}
.ls19{letter-spacing:659.930133pt;}
.ws2d{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws78{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws2e{word-spacing:-12.533333pt;}
.ws0{word-spacing:-12.266667pt;}
.ws75{word-spacing:-12.000000pt;}
.wsa2{word-spacing:-10.666667pt;}
.ws76{word-spacing:-10.240000pt;}
.ws77{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.328000pt;}
.ws104{word-spacing:-8.520000pt;}
.ws73{word-spacing:-7.773333pt;}
.wsf8{word-spacing:-7.462400pt;}
.ws4{word-spacing:-5.830000pt;}
.wsb9{word-spacing:-5.507409pt;}
.wsf7{word-spacing:-2.784000pt;}
.ws35{word-spacing:-2.773333pt;}
.ws82{word-spacing:-2.640000pt;}
.ws8f{word-spacing:-2.560000pt;}
.wsc2{word-spacing:-2.453333pt;}
.ws29{word-spacing:-2.400000pt;}
.ws2b{word-spacing:-2.368000pt;}
.ws3d{word-spacing:-2.293333pt;}
.ws5e{word-spacing:-2.240000pt;}
.ws69{word-spacing:-2.186667pt;}
.ws2f{word-spacing:-2.080000pt;}
.ws66{word-spacing:-2.026667pt;}
.ws6{word-spacing:-2.016000pt;}
.ws87{word-spacing:-1.962667pt;}
.wsd0{word-spacing:-1.920000pt;}
.ws7{word-spacing:-1.872000pt;}
.ws20{word-spacing:-1.866667pt;}
.wsd3{word-spacing:-1.749333pt;}
.ws7b{word-spacing:-1.706667pt;}
.ws42{word-spacing:-1.653333pt;}
.wsa{word-spacing:-1.632000pt;}
.ws7a{word-spacing:-1.600000pt;}
.ws56{word-spacing:-1.546667pt;}
.wsd1{word-spacing:-1.536000pt;}
.wsa6{word-spacing:-1.493333pt;}
.ws53{word-spacing:-1.440000pt;}
.wsbf{word-spacing:-1.386667pt;}
.wsda{word-spacing:-1.360000pt;}
.ws1b{word-spacing:-1.333333pt;}
.wsc7{word-spacing:-1.320000pt;}
.ws3c{word-spacing:-1.280000pt;}
.wsb5{word-spacing:-1.237333pt;}
.wsbd{word-spacing:-1.226667pt;}
.wscc{word-spacing:-1.194667pt;}
.ws81{word-spacing:-1.173333pt;}
.ws30{word-spacing:-1.066667pt;}
.wsce{word-spacing:-1.024000pt;}
.wsde{word-spacing:-0.938667pt;}
.ws7f{word-spacing:-0.906667pt;}
.wsf2{word-spacing:-0.864000pt;}
.wsc0{word-spacing:-0.800000pt;}
.wsf6{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.746667pt;}
.ws122{word-spacing:-0.720000pt;}
.ws67{word-spacing:-0.693333pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws55{word-spacing:-0.533333pt;}
.wsca{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.480000pt;}
.wsc8{word-spacing:-0.440000pt;}
.wsd2{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.266667pt;}
.wsb4{word-spacing:-0.256000pt;}
.ws4c{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws51{word-spacing:-0.106667pt;}
.wsf4{word-spacing:-0.085333pt;}
.wsfd{word-spacing:-0.053333pt;}
.wsf1{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws102{word-spacing:0.042667pt;}
.ws106{word-spacing:0.053333pt;}
.ws80{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.122085pt;}
.ws94{word-spacing:0.160000pt;}
.wsb3{word-spacing:0.170919pt;}
.wsff{word-spacing:0.213333pt;}
.wsdb{word-spacing:0.280000pt;}
.wsf3{word-spacing:0.341333pt;}
.ws34{word-spacing:0.373333pt;}
.ws84{word-spacing:0.384000pt;}
.ws85{word-spacing:0.426667pt;}
.ws115{word-spacing:0.440000pt;}
.wsf5{word-spacing:0.469333pt;}
.ws97{word-spacing:0.480000pt;}
.ws8d{word-spacing:0.533333pt;}
.ws2c{word-spacing:0.554667pt;}
.ws11f{word-spacing:0.560000pt;}
.wsc1{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.693333pt;}
.wscd{word-spacing:0.725333pt;}
.ws52{word-spacing:0.746667pt;}
.ws27{word-spacing:0.800000pt;}
.wsc5{word-spacing:0.840000pt;}
.ws110{word-spacing:0.853333pt;}
.wsa8{word-spacing:0.906667pt;}
.ws8{word-spacing:0.960000pt;}
.ws60{word-spacing:1.013333pt;}
.ws12{word-spacing:1.066667pt;}
.ws39{word-spacing:1.120000pt;}
.wsec{word-spacing:1.173333pt;}
.ws11{word-spacing:1.226667pt;}
.wse1{word-spacing:1.280000pt;}
.ws59{word-spacing:1.333333pt;}
.ws91{word-spacing:1.386667pt;}
.ws11b{word-spacing:1.400000pt;}
.ws13{word-spacing:1.440000pt;}
.ws24{word-spacing:1.493333pt;}
.wsed{word-spacing:1.546667pt;}
.wsc4{word-spacing:1.600000pt;}
.wsd4{word-spacing:1.664000pt;}
.ws71{word-spacing:1.680000pt;}
.wsb0{word-spacing:1.749333pt;}
.ws26{word-spacing:1.813333pt;}
.ws3a{word-spacing:1.866667pt;}
.ws9e{word-spacing:1.920000pt;}
.ws120{word-spacing:1.960000pt;}
.wsa7{word-spacing:1.973333pt;}
.wsc3{word-spacing:2.026667pt;}
.ws1f{word-spacing:2.080000pt;}
.wsfc{word-spacing:2.133333pt;}
.wsdf{word-spacing:2.186667pt;}
.wsaa{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.wsa4{word-spacing:2.346667pt;}
.ws114{word-spacing:2.360000pt;}
.wsbe{word-spacing:2.400000pt;}
.ws116{word-spacing:2.440000pt;}
.ws6a{word-spacing:2.453333pt;}
.ws103{word-spacing:2.474667pt;}
.ws119{word-spacing:2.480000pt;}
.ws1e{word-spacing:2.506667pt;}
.ws49{word-spacing:2.613333pt;}
.wsc6{word-spacing:2.640000pt;}
.ws88{word-spacing:2.645333pt;}
.ws47{word-spacing:2.666667pt;}
.wsba{word-spacing:2.720000pt;}
.ws98{word-spacing:2.773333pt;}
.ws5b{word-spacing:2.826667pt;}
.wscf{word-spacing:2.901333pt;}
.ws72{word-spacing:2.920000pt;}
.ws50{word-spacing:2.933333pt;}
.wscb{word-spacing:2.986667pt;}
.ws107{word-spacing:3.040000pt;}
.wsaf{word-spacing:3.080000pt;}
.ws7c{word-spacing:3.146667pt;}
.ws3e{word-spacing:3.200000pt;}
.wsef{word-spacing:3.253333pt;}
.ws86{word-spacing:3.285333pt;}
.ws14{word-spacing:3.306667pt;}
.ws117{word-spacing:3.360000pt;}
.ws22{word-spacing:3.413333pt;}
.ws10c{word-spacing:3.466667pt;}
.ws25{word-spacing:3.680000pt;}
.ws17{word-spacing:3.786667pt;}
.ws70{word-spacing:3.800000pt;}
.ws92{word-spacing:3.840000pt;}
.ws113{word-spacing:3.880000pt;}
.ws64{word-spacing:3.893333pt;}
.ws38{word-spacing:3.946667pt;}
.ws6d{word-spacing:4.000000pt;}
.ws108{word-spacing:4.053333pt;}
.wsc{word-spacing:4.080000pt;}
.ws40{word-spacing:4.106667pt;}
.ws83{word-spacing:4.138667pt;}
.ws8a{word-spacing:4.200000pt;}
.ws90{word-spacing:4.213333pt;}
.ws11c{word-spacing:4.240000pt;}
.ws10d{word-spacing:4.266667pt;}
.ws2a{word-spacing:4.320000pt;}
.wsc9{word-spacing:4.360000pt;}
.ws18{word-spacing:4.426667pt;}
.ws11a{word-spacing:4.440000pt;}
.ws61{word-spacing:4.480000pt;}
.ws9f{word-spacing:4.533333pt;}
.ws7e{word-spacing:4.586667pt;}
.ws48{word-spacing:4.746667pt;}
.ws8b{word-spacing:4.800000pt;}
.wsa0{word-spacing:4.853333pt;}
.wsee{word-spacing:4.906667pt;}
.ws8e{word-spacing:4.960000pt;}
.ws9a{word-spacing:5.013333pt;}
.ws111{word-spacing:5.040000pt;}
.ws7d{word-spacing:5.066667pt;}
.wsb1{word-spacing:5.120000pt;}
.wsdc{word-spacing:5.173333pt;}
.wsae{word-spacing:5.280000pt;}
.ws46{word-spacing:5.333333pt;}
.ws58{word-spacing:5.386667pt;}
.ws11e{word-spacing:5.400000pt;}
.wsab{word-spacing:5.440000pt;}
.ws43{word-spacing:5.493333pt;}
.wsbb{word-spacing:5.546667pt;}
.ws4d{word-spacing:5.600000pt;}
.ws6e{word-spacing:5.706667pt;}
.ws8c{word-spacing:5.760000pt;}
.ws15{word-spacing:5.813333pt;}
.ws118{word-spacing:5.840000pt;}
.ws28{word-spacing:5.866667pt;}
.wsb{word-spacing:5.904000pt;}
.ws32{word-spacing:5.920000pt;}
.wsdd{word-spacing:5.973333pt;}
.ws41{word-spacing:6.080000pt;}
.ws44{word-spacing:6.133333pt;}
.wsf{word-spacing:6.186667pt;}
.wsad{word-spacing:6.240000pt;}
.ws4e{word-spacing:6.346667pt;}
.ws16{word-spacing:6.400000pt;}
.ws9b{word-spacing:6.506667pt;}
.ws21{word-spacing:6.560000pt;}
.ws10{word-spacing:6.666667pt;}
.ws68{word-spacing:6.773333pt;}
.ws1a{word-spacing:6.880000pt;}
.ws5c{word-spacing:6.933333pt;}
.wsa1{word-spacing:6.986667pt;}
.ws57{word-spacing:7.040000pt;}
.ws9{word-spacing:7.056000pt;}
.wsfe{word-spacing:7.093333pt;}
.wsa9{word-spacing:7.146667pt;}
.ws5d{word-spacing:7.200000pt;}
.ws65{word-spacing:7.360000pt;}
.ws33{word-spacing:7.413333pt;}
.ws9c{word-spacing:7.466667pt;}
.ws105{word-spacing:7.520000pt;}
.ws89{word-spacing:7.720000pt;}
.ws23{word-spacing:7.733333pt;}
.ws95{word-spacing:7.786667pt;}
.ws10a{word-spacing:7.840000pt;}
.wsf0{word-spacing:7.893333pt;}
.ws10f{word-spacing:7.946667pt;}
.ws4b{word-spacing:8.000000pt;}
.ws11d{word-spacing:8.160000pt;}
.ws99{word-spacing:8.213333pt;}
.wse4{word-spacing:8.266667pt;}
.ws79{word-spacing:8.320000pt;}
.ws9d{word-spacing:8.426667pt;}
.ws54{word-spacing:8.586667pt;}
.ws3f{word-spacing:8.693333pt;}
.wse2{word-spacing:8.906667pt;}
.ws96{word-spacing:9.120000pt;}
.ws5f{word-spacing:9.173333pt;}
.wse0{word-spacing:9.226667pt;}
.ws109{word-spacing:9.280000pt;}
.ws6b{word-spacing:9.546667pt;}
.wsd{word-spacing:9.600000pt;}
.ws10b{word-spacing:9.653333pt;}
.ws62{word-spacing:9.760000pt;}
.ws63{word-spacing:9.866667pt;}
.ws101{word-spacing:10.000000pt;}
.wsac{word-spacing:10.400000pt;}
.ws121{word-spacing:10.640000pt;}
.ws5a{word-spacing:11.573333pt;}
.wse3{word-spacing:11.733333pt;}
.wse{word-spacing:13.333333pt;}
.ws10e{word-spacing:14.240000pt;}
.ws6c{word-spacing:14.346667pt;}
.ws4f{word-spacing:14.880000pt;}
.ws93{word-spacing:15.040000pt;}
.ws100{word-spacing:15.253333pt;}
.wsbc{word-spacing:17.173333pt;}
.ws45{word-spacing:17.493333pt;}
.ws112{word-spacing:50.480000pt;}
.wsb7{word-spacing:50.736397pt;}
.wsa3{word-spacing:50.836333pt;}
.wsb6{word-spacing:50.848547pt;}
.wsd9{word-spacing:52.762506pt;}
.wsb8{word-spacing:73.644322pt;}
.wse8{word-spacing:78.609600pt;}
.wse9{word-spacing:95.147200pt;}
.ws74{word-spacing:104.409067pt;}
.wsf9{word-spacing:124.210133pt;}
.wseb{word-spacing:148.102933pt;}
.wse6{word-spacing:148.116267pt;}
.wsea{word-spacing:160.102933pt;}
.wsd5{word-spacing:177.503467pt;}
.wsd8{word-spacing:235.372267pt;}
.wsd6{word-spacing:237.153067pt;}
.wsd7{word-spacing:251.141333pt;}
.wsfa{word-spacing:260.131200pt;}
.wsfb{word-spacing:623.714133pt;}
.wse5{word-spacing:810.219200pt;}
.wse7{word-spacing:1694.234133pt;}
._40{margin-left:-14.678933pt;}
._a{margin-left:-6.975467pt;}
._7{margin-left:-5.996800pt;}
._9{margin-left:-4.277333pt;}
._5{margin-left:-2.978133pt;}
._0{margin-left:-1.982400pt;}
._4{margin-left:-0.901333pt;}
._1{width:0.960000pt;}
._2{width:1.886400pt;}
._e{width:2.801600pt;}
._3{width:4.003200pt;}
._6{width:5.143467pt;}
._12{width:6.531733pt;}
._8{width:7.674667pt;}
._d{width:8.624000pt;}
._11{width:10.224000pt;}
._10{width:13.349333pt;}
._f{width:26.666667pt;}
._16{width:45.767637pt;}
._2a{width:51.888141pt;}
._36{width:56.539733pt;}
._c{width:59.085867pt;}
._13{width:61.725867pt;}
._15{width:64.731904pt;}
._18{width:70.184171pt;}
._1b{width:78.268437pt;}
._19{width:81.064171pt;}
._1a{width:83.803904pt;}
._1d{width:86.408533pt;}
._17{width:91.888171pt;}
._37{width:111.556800pt;}
._1c{width:113.889101pt;}
._2d{width:160.116267pt;}
._38{width:162.712896pt;}
._20{width:175.866667pt;}
._3d{width:177.389333pt;}
._1f{width:180.149867pt;}
._3f{width:189.363733pt;}
._3a{width:190.254400pt;}
._2c{width:192.451733pt;}
._39{width:202.192000pt;}
._3b{width:203.082667pt;}
._1e{width:221.383467pt;}
._3c{width:223.340267pt;}
._3e{width:234.248533pt;}
._22{width:247.372267pt;}
._46{width:252.644267pt;}
._25{width:254.983467pt;}
._28{width:255.874133pt;}
._29{width:260.262400pt;}
._26{width:264.515200pt;}
._24{width:266.164267pt;}
._27{width:267.648000pt;}
._45{width:269.700267pt;}
._23{width:271.371733pt;}
._2e{width:286.401067pt;}
._21{width:350.963200pt;}
._44{width:351.906667pt;}
._47{width:456.825600pt;}
._14{width:475.769003pt;}
._43{width:497.091733pt;}
._35{width:503.454933pt;}
._30{width:506.948267pt;}
._41{width:599.924800pt;}
._42{width:602.402133pt;}
._32{width:649.998933pt;}
._2f{width:663.436800pt;}
._b{width:824.256000pt;}
._2b{width:832.122133pt;}
._33{width:1092.164267pt;}
._34{width:1225.721600pt;}
._31{width:1263.689600pt;}
.fs7{font-size:23.320000pt;}
.fs10{font-size:24.369067pt;}
.fsc{font-size:24.417067pt;}
.fse{font-size:24.422933pt;}
.fs11{font-size:24.438400pt;}
.fsf{font-size:29.892800pt;}
.fsb{font-size:29.951467pt;}
.fsd{font-size:29.958933pt;}
.fs12{font-size:29.977600pt;}
.fs9{font-size:31.093333pt;}
.fsa{font-size:37.111467pt;}
.fs6{font-size:37.312000pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.y159{bottom:-16.164415pt;}
.y236{bottom:-6.045867pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:0.271067pt;}
.y1bf{bottom:0.589067pt;}
.y19c{bottom:1.232267pt;}
.y158{bottom:2.790267pt;}
.y2{bottom:51.700667pt;}
.y49{bottom:58.130800pt;}
.y1{bottom:65.034000pt;}
.y48{bottom:72.130800pt;}
.y46{bottom:111.149600pt;}
.yf0{bottom:111.149733pt;}
.y4b{bottom:111.842533pt;}
.y2a6{bottom:116.518400pt;}
.yb7{bottom:122.482933pt;}
.yef{bottom:122.483067pt;}
.y4a{bottom:123.842533pt;}
.y84{bottom:124.918000pt;}
.y124{bottom:125.296533pt;}
.y45{bottom:125.812933pt;}
.y18b{bottom:125.813067pt;}
.y13e{bottom:126.100267pt;}
.y244{bottom:127.892133pt;}
.y2a5{bottom:128.518400pt;}
.y44{bottom:133.816267pt;}
.yee{bottom:133.816400pt;}
.y156{bottom:137.146400pt;}
.y83{bottom:138.686533pt;}
.y2a4{bottom:140.518400pt;}
.y13d{bottom:141.050933pt;}
.y243{bottom:144.634800pt;}
.yb6{bottom:145.149600pt;}
.y19a{bottom:145.149733pt;}
.y1f1{bottom:145.149867pt;}
.y43{bottom:148.479600pt;}
.yed{bottom:148.479733pt;}
.y82{bottom:152.454933pt;}
.y123{bottom:153.590533pt;}
.y13c{bottom:156.001467pt;}
.y199{bottom:156.483067pt;}
.y1f0{bottom:156.483200pt;}
.yb5{bottom:159.812933pt;}
.y18a{bottom:160.273067pt;}
.y242{bottom:161.377333pt;}
.y81{bottom:166.223333pt;}
.y122{bottom:167.737467pt;}
.y198{bottom:167.816400pt;}
.y2a3{bottom:167.975733pt;}
.y13b{bottom:170.952267pt;}
.y155{bottom:171.606400pt;}
.y217{bottom:172.508800pt;}
.y189{bottom:174.444533pt;}
.y24a{bottom:176.155333pt;}
.y241{bottom:178.120000pt;}
.y80{bottom:179.991867pt;}
.y197{bottom:182.479733pt;}
.yec{bottom:182.939733pt;}
.y39{bottom:183.241733pt;}
.y1a{bottom:183.253467pt;}
.y13a{bottom:185.902933pt;}
.y154{bottom:186.072133pt;}
.y2a2{bottom:186.974400pt;}
.y216{bottom:187.248267pt;}
.y188{bottom:188.616133pt;}
.yeb{bottom:193.693600pt;}
.y7f{bottom:193.760267pt;}
.yb4{bottom:194.272933pt;}
.y1ef{bottom:194.273200pt;}
.y240{bottom:194.862533pt;}
.y38{bottom:197.634933pt;}
.y19{bottom:197.920133pt;}
.y153{bottom:200.538000pt;}
.y139{bottom:200.853600pt;}
.y215{bottom:201.987733pt;}
.y187{bottom:202.787600pt;}
.yea{bottom:204.447467pt;}
.y29f{bottom:205.973067pt;}
.y7e{bottom:207.528800pt;}
.y249{bottom:207.919867pt;}
.yb3{bottom:208.172533pt;}
.y1ee{bottom:208.797200pt;}
.y121{bottom:210.178267pt;}
.y23f{bottom:211.605200pt;}
.y37{bottom:212.028133pt;}
.y18{bottom:212.586800pt;}
.y152{bottom:215.003867pt;}
.ye9{bottom:215.201333pt;}
.y138{bottom:215.804267pt;}
.y214{bottom:216.727333pt;}
.y186{bottom:216.959200pt;}
.y1e1{bottom:220.107333pt;}
.y7d{bottom:221.297200pt;}
.yb2{bottom:222.072133pt;}
.y1ed{bottom:223.321333pt;}
.y120{bottom:224.325200pt;}
.y2a1{bottom:224.971733pt;}
.ye8{bottom:225.955200pt;}
.y36{bottom:226.421467pt;}
.y17{bottom:227.253467pt;}
.y23e{bottom:228.347733pt;}
.y151{bottom:229.469600pt;}
.y137{bottom:230.754933pt;}
.y185{bottom:231.130800pt;}
.y213{bottom:231.466800pt;}
.y1e0{bottom:232.107333pt;}
.y7c{bottom:235.065600pt;}
.yb1{bottom:235.971600pt;}
.ye7{bottom:236.709067pt;}
.y1ec{bottom:237.845333pt;}
.y11f{bottom:238.472267pt;}
.y35{bottom:240.814667pt;}
.y16{bottom:241.920133pt;}
.y150{bottom:243.935333pt;}
.y2a0{bottom:243.970533pt;}
.y1df{bottom:244.107333pt;}
.y23d{bottom:245.090400pt;}
.y184{bottom:245.302267pt;}
.y136{bottom:245.705600pt;}
.y212{bottom:246.206267pt;}
.y248{bottom:247.684400pt;}
.y7b{bottom:248.834133pt;}
.yb0{bottom:249.871200pt;}
.y1eb{bottom:252.369467pt;}
.y11e{bottom:252.619200pt;}
.y34{bottom:255.207867pt;}
.y1de{bottom:256.107333pt;}
.y15{bottom:256.586800pt;}
.ye6{bottom:257.581067pt;}
.y14f{bottom:258.401200pt;}
.y183{bottom:259.473867pt;}
.y135{bottom:260.656267pt;}
.y211{bottom:260.945733pt;}
.y23c{bottom:261.832933pt;}
.y7a{bottom:262.602667pt;}
.y29e{bottom:262.969200pt;}
.y247{bottom:263.566667pt;}
.yaf{bottom:263.770800pt;}
.y11d{bottom:266.766133pt;}
.y1ea{bottom:267.560267pt;}
.y1dd{bottom:268.107333pt;}
.ye5{bottom:269.581067pt;}
.y33{bottom:269.601200pt;}
.y14{bottom:271.253467pt;}
.y14e{bottom:272.866933pt;}
.y134{bottom:275.606933pt;}
.y210{bottom:275.685200pt;}
.y79{bottom:276.371067pt;}
.yae{bottom:277.670400pt;}
.y23b{bottom:278.575600pt;}
.y246{bottom:279.448933pt;}
.y11c{bottom:280.913067pt;}
.ye4{bottom:281.581067pt;}
.y29d{bottom:281.967867pt;}
.y1e9{bottom:282.750933pt;}
.y32{bottom:284.661067pt;}
.y1be{bottom:286.869067pt;}
.y14d{bottom:287.332800pt;}
.y78{bottom:290.139467pt;}
.y20f{bottom:290.424800pt;}
.y133{bottom:290.557600pt;}
.yad{bottom:291.570000pt;}
.ye3{bottom:293.581067pt;}
.y11b{bottom:295.060133pt;}
.y23a{bottom:295.318133pt;}
.y245{bottom:295.331200pt;}
.y1dc{bottom:296.799600pt;}
.y1e8{bottom:297.941733pt;}
.y31{bottom:299.720933pt;}
.y13{bottom:300.586800pt;}
.y29a{bottom:300.966533pt;}
.y14c{bottom:301.798533pt;}
.y1b8{bottom:303.342933pt;}
.y77{bottom:303.908000pt;}
.y20e{bottom:305.164267pt;}
.yac{bottom:305.469600pt;}
.y132{bottom:305.508267pt;}
.ye2{bottom:305.581067pt;}
.y1db{bottom:308.506055pt;}
.y11a{bottom:309.207067pt;}
.y1e7{bottom:313.132400pt;}
.y30{bottom:314.780800pt;}
.y1b7{bottom:315.342933pt;}
.y14b{bottom:316.264400pt;}
.y1d3{bottom:316.413818pt;}
.ye1{bottom:317.581067pt;}
.y76{bottom:317.676400pt;}
.y20d{bottom:319.237067pt;}
.yab{bottom:319.369200pt;}
.y29c{bottom:319.965333pt;}
.y131{bottom:320.458933pt;}
.y119{bottom:323.354000pt;}
.y1b6{bottom:327.342933pt;}
.y270{bottom:327.919867pt;}
.y1e6{bottom:328.323200pt;}
.y2f{bottom:329.840667pt;}
.y14a{bottom:330.730133pt;}
.y75{bottom:331.444933pt;}
.yaa{bottom:333.268800pt;}
.y20c{bottom:333.309867pt;}
.ye0{bottom:333.472133pt;}
.y130{bottom:335.409600pt;}
.y2f4{bottom:337.291333pt;}
.y118{bottom:337.500933pt;}
.y2cc{bottom:337.594533pt;}
.y29b{bottom:338.964000pt;}
.y1b5{bottom:339.342933pt;}
.y1ca{bottom:339.466133pt;}
.y1d4{bottom:339.808122pt;}
.y1e5{bottom:343.513867pt;}
.y12{bottom:344.586800pt;}
.y2e{bottom:344.900667pt;}
.y149{bottom:345.196000pt;}
.y74{bottom:345.213333pt;}
.ydf{bottom:345.472133pt;}
.yd7{bottom:345.485867pt;}
.ya9{bottom:347.168267pt;}
.y20b{bottom:347.382667pt;}
.y2f3{bottom:349.056267pt;}
.y12f{bottom:350.360267pt;}
.y117{bottom:351.647867pt;}
.y2cb{bottom:352.477867pt;}
.y26e{bottom:355.371200pt;}
.yde{bottom:357.472133pt;}
.y11{bottom:357.920133pt;}
.y299{bottom:357.962667pt;}
.y73{bottom:358.981733pt;}
.y148{bottom:359.661733pt;}
.y2d{bottom:359.960533pt;}
.y2f2{bottom:360.821200pt;}
.ya8{bottom:361.067867pt;}
.y20a{bottom:361.455600pt;}
.y26d{bottom:362.037867pt;}
.y1d5{bottom:363.202426pt;}
.y1cb{bottom:365.148667pt;}
.y12e{bottom:365.310933pt;}
.y116{bottom:365.794933pt;}
.y2ca{bottom:367.361333pt;}
.y26f{bottom:368.704533pt;}
.ydd{bottom:369.472133pt;}
.y2f1{bottom:372.586133pt;}
.y72{bottom:372.750267pt;}
.y1e4{bottom:373.895467pt;}
.y147{bottom:374.127600pt;}
.ya7{bottom:374.967467pt;}
.y2c{bottom:375.020400pt;}
.y209{bottom:375.528400pt;}
.y298{bottom:376.961333pt;}
.y1c6{bottom:379.431600pt;}
.y115{bottom:379.941867pt;}
.y1cd{bottom:380.095067pt;}
.y12d{bottom:380.261600pt;}
.y1cf{bottom:380.826133pt;}
.y2c9{bottom:382.244800pt;}
.y2f0{bottom:384.350933pt;}
.y10{bottom:384.586800pt;}
.ydc{bottom:385.390800pt;}
.y71{bottom:386.518667pt;}
.y1d6{bottom:386.584545pt;}
.y26b{bottom:387.691600pt;}
.ya6{bottom:388.867067pt;}
.y1e3{bottom:389.086133pt;}
.y146{bottom:389.260000pt;}
.y208{bottom:389.601200pt;}
.y2b{bottom:390.080267pt;}
.y1ce{bottom:391.758400pt;}
.y114{bottom:394.088800pt;}
.y26a{bottom:394.358267pt;}
.y12c{bottom:395.212267pt;}
.y295{bottom:395.960000pt;}
.y2ef{bottom:396.115867pt;}
.y1cc{bottom:396.422400pt;}
.y1d1{bottom:396.517200pt;}
.y2c8{bottom:397.128133pt;}
.y1c0{bottom:397.200933pt;}
.ydb{bottom:397.390800pt;}
.yf{bottom:397.920133pt;}
.y70{bottom:400.287200pt;}
.y26c{bottom:401.024933pt;}
.y1d0{bottom:402.176267pt;}
.ya5{bottom:402.766667pt;}
.y207{bottom:403.674000pt;}
.y1e2{bottom:404.276933pt;}
.y145{bottom:404.392400pt;}
.y2a{bottom:405.140133pt;}
.y2ee{bottom:407.880800pt;}
.y113{bottom:408.235733pt;}
.yda{bottom:409.390800pt;}
.y12b{bottom:409.496267pt;}
.y1c1{bottom:409.676533pt;}
.y1d7{bottom:409.978849pt;}
.y2c7{bottom:412.011600pt;}
.y6f{bottom:414.055600pt;}
.y297{bottom:414.958800pt;}
.ya4{bottom:416.666267pt;}
.y1c8{bottom:417.528933pt;}
.y1c4{bottom:418.503600pt;}
.y144{bottom:419.524933pt;}
.y2ed{bottom:419.645733pt;}
.y268{bottom:420.011867pt;}
.y29{bottom:420.200133pt;}
.y1c2{bottom:420.236533pt;}
.yd9{bottom:421.390800pt;}
.y112{bottom:422.382800pt;}
.y12a{bottom:423.780267pt;}
.ye{bottom:424.586800pt;}
.y1c5{bottom:425.327067pt;}
.y267{bottom:426.678533pt;}
.y2c6{bottom:426.895067pt;}
.y6e{bottom:427.824133pt;}
.ya3{bottom:430.565867pt;}
.y2ec{bottom:431.410667pt;}
.y269{bottom:433.345200pt;}
.y1d8{bottom:433.354876pt;}
.yd8{bottom:433.390800pt;}
.y296{bottom:433.957467pt;}
.y143{bottom:434.657333pt;}
.y28{bottom:435.260000pt;}
.y111{bottom:436.529733pt;}
.y21f{bottom:437.120800pt;}
.yd{bottom:437.920133pt;}
.y129{bottom:438.064267pt;}
.y6d{bottom:441.592533pt;}
.y2c5{bottom:441.778400pt;}
.y1c9{bottom:441.992933pt;}
.y2eb{bottom:443.175600pt;}
.ya2{bottom:444.465333pt;}
.yd6{bottom:449.281867pt;}
.y142{bottom:449.789867pt;}
.y27{bottom:450.319867pt;}
.y110{bottom:450.676667pt;}
.yc{bottom:451.253467pt;}
.y265{bottom:452.332133pt;}
.y128{bottom:452.348267pt;}
.y294{bottom:452.950267pt;}
.y1c3{bottom:453.378800pt;}
.y1d2{bottom:453.818800pt;}
.y2ea{bottom:454.940533pt;}
.y6c{bottom:455.360933pt;}
.y2c4{bottom:456.661867pt;}
.y1d9{bottom:456.749180pt;}
.ya1{bottom:458.364933pt;}
.y264{bottom:458.998800pt;}
.yd5{bottom:461.281867pt;}
.y21e{bottom:464.572267pt;}
.yb{bottom:464.586800pt;}
.y10f{bottom:464.823600pt;}
.y141{bottom:464.922267pt;}
.y26{bottom:465.379733pt;}
.y266{bottom:465.665467pt;}
.y127{bottom:466.632267pt;}
.y2e9{bottom:466.705467pt;}
.y6b{bottom:469.129467pt;}
.y2c3{bottom:471.545333pt;}
.ya0{bottom:472.264533pt;}
.yd4{bottom:473.281867pt;}
.ya{bottom:477.920133pt;}
.y2e8{bottom:478.470400pt;}
.y10e{bottom:478.970667pt;}
.ycf{bottom:479.281867pt;}
.y1c7{bottom:479.406400pt;}
.y140{bottom:480.054800pt;}
.y1da{bottom:480.143484pt;}
.y25{bottom:480.439733pt;}
.y126{bottom:480.916267pt;}
.y6a{bottom:482.897867pt;}
.y21d{bottom:483.559200pt;}
.y263{bottom:484.652533pt;}
.yd3{bottom:485.281867pt;}
.y9f{bottom:486.164133pt;}
.y2c2{bottom:486.428667pt;}
.y2e7{bottom:490.235333pt;}
.y274{bottom:490.994000pt;}
.yce{bottom:491.281867pt;}
.y262{bottom:491.319200pt;}
.y10d{bottom:493.117600pt;}
.y28f{bottom:493.243200pt;}
.y13f{bottom:495.187200pt;}
.y125{bottom:495.200267pt;}
.y24{bottom:495.499600pt;}
.y69{bottom:496.666400pt;}
.yd2{bottom:497.281867pt;}
.y9e{bottom:500.063733pt;}
.y2c1{bottom:501.312133pt;}
.y2e6{bottom:502.000133pt;}
.y21c{bottom:502.546267pt;}
.y28e{bottom:504.576667pt;}
.y273{bottom:505.660667pt;}
.y9{bottom:505.920133pt;}
.y10c{bottom:507.264533pt;}
.yd1{bottom:509.281867pt;}
.y68{bottom:510.434800pt;}
.y23{bottom:510.559467pt;}
.y196{bottom:513.327467pt;}
.y2e5{bottom:513.765067pt;}
.y9d{bottom:513.963333pt;}
.y2c0{bottom:516.195600pt;}
.y272{bottom:520.327333pt;}
.yd0{bottom:521.281867pt;}
.y10b{bottom:521.411467pt;}
.y21b{bottom:521.533200pt;}
.y67{bottom:524.203333pt;}
.y2e4{bottom:525.530000pt;}
.y22{bottom:525.619333pt;}
.y17a{bottom:527.122133pt;}
.y9c{bottom:527.862933pt;}
.y195{bottom:528.581333pt;}
.y2bf{bottom:531.079067pt;}
.y271{bottom:534.994000pt;}
.y10a{bottom:535.558400pt;}
.ycd{bottom:537.172933pt;}
.y2e3{bottom:537.294933pt;}
.y66{bottom:537.971733pt;}
.y261{bottom:538.434400pt;}
.y179{bottom:539.122133pt;}
.y182{bottom:539.645467pt;}
.y21a{bottom:540.520267pt;}
.y21{bottom:540.679200pt;}
.y9b{bottom:541.762533pt;}
.y194{bottom:543.835333pt;}
.y2be{bottom:545.962400pt;}
.y2e2{bottom:549.059867pt;}
.ycc{bottom:549.172933pt;}
.y109{bottom:549.705333pt;}
.y8{bottom:549.920133pt;}
.y260{bottom:550.434400pt;}
.y28d{bottom:551.164667pt;}
.y65{bottom:551.740133pt;}
.y181{bottom:553.816933pt;}
.y9a{bottom:555.662000pt;}
.y20{bottom:555.739200pt;}
.y193{bottom:559.089200pt;}
.y219{bottom:559.507200pt;}
.y2e1{bottom:560.824800pt;}
.y2bd{bottom:560.845867pt;}
.ycb{bottom:561.172933pt;}
.y25f{bottom:562.434400pt;}
.y7{bottom:563.253467pt;}
.y108{bottom:563.852400pt;}
.y64{bottom:565.508667pt;}
.y28c{bottom:565.831333pt;}
.y180{bottom:567.988533pt;}
.y218{bottom:568.904000pt;}
.y99{bottom:569.561600pt;}
.y1f{bottom:570.799067pt;}
.y2e0{bottom:572.589733pt;}
.y192{bottom:574.343200pt;}
.y25e{bottom:574.434533pt;}
.y293{bottom:574.474933pt;}
.y2bc{bottom:575.729333pt;}
.y6{bottom:576.586800pt;}
.y107{bottom:577.999333pt;}
.y63{bottom:579.277067pt;}
.y28b{bottom:580.498000pt;}
.y17f{bottom:582.160000pt;}
.y2df{bottom:584.354667pt;}
.y1e{bottom:585.858933pt;}
.y292{bottom:586.474933pt;}
.y191{bottom:589.597200pt;}
.y5{bottom:589.920133pt;}
.y2bb{bottom:590.612667pt;}
.y106{bottom:592.146267pt;}
.y62{bottom:593.045600pt;}
.yca{bottom:593.587200pt;}
.y28a{bottom:595.164667pt;}
.y2de{bottom:596.119600pt;}
.y17e{bottom:596.331600pt;}
.y98{bottom:597.360800pt;}
.y291{bottom:598.474933pt;}
.y1d{bottom:600.918800pt;}
.y25d{bottom:601.885867pt;}
.y4{bottom:603.253467pt;}
.y190{bottom:604.851200pt;}
.y2ba{bottom:605.496133pt;}
.y105{bottom:606.293333pt;}
.y61{bottom:606.814000pt;}
.y206{bottom:607.306000pt;}
.y2dd{bottom:607.884533pt;}
.yc9{bottom:608.340933pt;}
.y25c{bottom:608.552533pt;}
.y289{bottom:609.831333pt;}
.y290{bottom:610.474933pt;}
.y17d{bottom:610.503200pt;}
.y97{bottom:611.260400pt;}
.y1c{bottom:615.978800pt;}
.y2dc{bottom:619.649467pt;}
.y18f{bottom:620.105067pt;}
.y2b9{bottom:620.379600pt;}
.y104{bottom:620.440267pt;}
.y60{bottom:620.582400pt;}
.y205{bottom:621.378800pt;}
.yc8{bottom:623.094933pt;}
.y288{bottom:624.498000pt;}
.y17c{bottom:624.674667pt;}
.y96{bottom:625.160000pt;}
.y1b{bottom:631.038667pt;}
.y3{bottom:631.253467pt;}
.y2db{bottom:631.414400pt;}
.y25b{bottom:634.206133pt;}
.y5f{bottom:634.350933pt;}
.y103{bottom:634.587200pt;}
.y2b8{bottom:635.263067pt;}
.y18e{bottom:635.359067pt;}
.yc7{bottom:637.848667pt;}
.y17b{bottom:638.846267pt;}
.y287{bottom:639.164667pt;}
.y25a{bottom:640.872800pt;}
.y2da{bottom:643.179200pt;}
.y5e{bottom:648.119333pt;}
.y102{bottom:648.734133pt;}
.y204{bottom:648.903067pt;}
.y2b7{bottom:650.146400pt;}
.y18d{bottom:650.612933pt;}
.yc6{bottom:652.602667pt;}
.y286{bottom:653.831333pt;}
.y2d9{bottom:654.944267pt;}
.y239{bottom:657.032133pt;}
.y15c{bottom:658.426800pt;}
.y178{bottom:658.959733pt;}
.y203{bottom:662.236400pt;}
.y5d{bottom:662.287867pt;}
.y101{bottom:662.881067pt;}
.y2b6{bottom:665.029867pt;}
.y18c{bottom:665.866933pt;}
.y259{bottom:666.526533pt;}
.y2d8{bottom:666.709067pt;}
.y95{bottom:666.858667pt;}
.yc5{bottom:667.356400pt;}
.y285{bottom:668.498000pt;}
.y238{bottom:669.032133pt;}
.y15b{bottom:670.426800pt;}
.y1b4{bottom:670.768133pt;}
.y177{bottom:670.959733pt;}
.y258{bottom:673.193200pt;}
.y202{bottom:675.569733pt;}
.y5c{bottom:676.456267pt;}
.y100{bottom:677.028000pt;}
.y2d7{bottom:678.474000pt;}
.y2b5{bottom:679.913200pt;}
.y94{bottom:680.758267pt;}
.y237{bottom:681.032133pt;}
.yc4{bottom:682.110267pt;}
.y15a{bottom:682.426800pt;}
.y1b3{bottom:682.768133pt;}
.y176{bottom:682.959733pt;}
.y284{bottom:683.164667pt;}
.y2d6{bottom:690.238933pt;}
.y42{bottom:690.274400pt;}
.y5b{bottom:690.624800pt;}
.yff{bottom:691.175067pt;}
.y1bd{bottom:694.022400pt;}
.y201{bottom:694.556667pt;}
.y93{bottom:694.657867pt;}
.y2b4{bottom:694.796667pt;}
.yc3{bottom:696.864133pt;}
.y283{bottom:697.831333pt;}
.y257{bottom:698.846800pt;}
.y235{bottom:699.777067pt;}
.y19b{bottom:701.513067pt;}
.y2d5{bottom:702.003867pt;}
.y157{bottom:702.381067pt;}
.y15d{bottom:702.526400pt;}
.y5a{bottom:704.793200pt;}
.yfe{bottom:705.322000pt;}
.y256{bottom:705.513467pt;}
.y1bc{bottom:706.022400pt;}
.y200{bottom:707.890000pt;}
.y92{bottom:708.557467pt;}
.y2b3{bottom:709.680133pt;}
.y175{bottom:712.062267pt;}
.y282{bottom:712.498000pt;}
.y2d4{bottom:713.768800pt;}
.y1fd{bottom:714.550800pt;}
.y1bb{bottom:718.022400pt;}
.y59{bottom:718.961600pt;}
.yfd{bottom:719.468933pt;}
.y1ff{bottom:721.223333pt;}
.y91{bottom:722.457067pt;}
.y22a{bottom:722.714545pt;}
.y1b2{bottom:723.744866pt;}
.y174{bottom:723.796709pt;}
.y2b2{bottom:724.563600pt;}
.y2d3{bottom:725.533733pt;}
.yc2{bottom:726.371867pt;}
.y281{bottom:727.164667pt;}
.y1ba{bottom:730.022400pt;}
.y255{bottom:731.167200pt;}
.y1a7{bottom:731.682320pt;}
.y16a{bottom:731.726151pt;}
.y58{bottom:733.130133pt;}
.yfc{bottom:733.616000pt;}
.y41{bottom:734.064400pt;}
.y1fe{bottom:734.556667pt;}
.y90{bottom:736.356533pt;}
.y254{bottom:737.833867pt;}
.y220{bottom:738.534667pt;}
.y22b{bottom:738.880546pt;}
.y2b1{bottom:739.446933pt;}
.yc1{bottom:741.125733pt;}
.y280{bottom:741.831333pt;}
.y1b9{bottom:742.022400pt;}
.y57{bottom:747.298533pt;}
.yfb{bottom:747.762800pt;}
.y1a8{bottom:748.094531pt;}
.y16b{bottom:749.959595pt;}
.y8f{bottom:750.256133pt;}
.y40{bottom:751.397733pt;}
.y2d2{bottom:752.396933pt;}
.y1fc{bottom:753.543733pt;}
.y2b0{bottom:754.330400pt;}
.y221{bottom:754.976267pt;}
.y22c{bottom:755.303151pt;}
.y27f{bottom:756.498000pt;}
.y1f9{bottom:760.210400pt;}
.y56{bottom:761.467067pt;}
.yfa{bottom:761.909867pt;}
.y253{bottom:763.487467pt;}
.y8e{bottom:764.155733pt;}
.y1a9{bottom:764.506742pt;}
.y1fb{bottom:766.877067pt;}
.y16c{bottom:768.205249pt;}
.y2af{bottom:769.213733pt;}
.y27e{bottom:771.164667pt;}
.y222{bottom:771.397333pt;}
.y22d{bottom:771.737975pt;}
.y1f8{bottom:773.543733pt;}
.y55{bottom:775.635467pt;}
.yf9{bottom:776.056800pt;}
.y8d{bottom:778.055333pt;}
.yc0{bottom:779.966800pt;}
.y1fa{bottom:780.210400pt;}
.y1aa{bottom:780.937271pt;}
.y252{bottom:782.474400pt;}
.y2ae{bottom:784.097200pt;}
.y27d{bottom:785.831333pt;}
.y16d{bottom:786.438693pt;}
.y19d{bottom:786.875600pt;}
.y223{bottom:787.818533pt;}
.y22e{bottom:788.166690pt;}
.y251{bottom:789.141067pt;}
.y54{bottom:789.804000pt;}
.yf8{bottom:790.203733pt;}
.y8c{bottom:791.954933pt;}
.ybf{bottom:793.654000pt;}
.y3f{bottom:795.187867pt;}
.y1ab{bottom:797.349482pt;}
.y2ad{bottom:798.980667pt;}
.y1f7{bottom:799.209067pt;}
.y27c{bottom:800.498000pt;}
.y19e{bottom:803.795200pt;}
.y1a5{bottom:803.842667pt;}
.y53{bottom:803.972400pt;}
.y224{bottom:804.239600pt;}
.yf7{bottom:804.350667pt;}
.y22f{bottom:804.589294pt;}
.y16e{bottom:804.672138pt;}
.y1a3{bottom:805.226667pt;}
.y8b{bottom:805.854533pt;}
.ybe{bottom:807.341200pt;}
.y1a0{bottom:808.937467pt;}
.y1f6{bottom:812.542400pt;}
.y2d1{bottom:812.790000pt;}
.y1ac{bottom:813.761693pt;}
.y2ac{bottom:813.864133pt;}
.y250{bottom:814.794800pt;}
.y27b{bottom:815.164667pt;}
.y164{bottom:815.264267pt;}
.y3e{bottom:817.854533pt;}
.y52{bottom:818.140800pt;}
.yf6{bottom:818.497733pt;}
.y8a{bottom:819.754133pt;}
.y225{bottom:820.667600pt;}
.y230{bottom:821.011899pt;}
.ybd{bottom:821.028400pt;}
.y24f{bottom:821.461467pt;}
.y16f{bottom:822.905582pt;}
.y1a4{bottom:825.382267pt;}
.y2d0{bottom:827.888133pt;}
.y2ab{bottom:828.747467pt;}
.y27a{bottom:829.831333pt;}
.y1ad{bottom:830.180010pt;}
.y19f{bottom:830.789333pt;}
.y51{bottom:832.309333pt;}
.yf5{bottom:832.644667pt;}
.y1a1{bottom:833.638533pt;}
.y89{bottom:833.653733pt;}
.y15f{bottom:834.078667pt;}
.ybc{bottom:834.715600pt;}
.y226{bottom:837.102267pt;}
.y231{bottom:837.434504pt;}
.y3d{bottom:840.521200pt;}
.y170{bottom:841.139027pt;}
.y2cf{bottom:842.986533pt;}
.y2aa{bottom:843.630933pt;}
.y279{bottom:844.498000pt;}
.y50{bottom:846.477733pt;}
.y1ae{bottom:846.604433pt;}
.yf4{bottom:846.791600pt;}
.y1f5{bottom:846.860267pt;}
.y24e{bottom:847.115067pt;}
.y88{bottom:847.553333pt;}
.ybb{bottom:848.402800pt;}
.y165{bottom:850.783867pt;}
.y227{bottom:853.523467pt;}
.y24d{bottom:853.781733pt;}
.y232{bottom:853.875438pt;}
.y168{bottom:857.993600pt;}
.y2ce{bottom:858.084667pt;}
.y2a9{bottom:858.514267pt;}
.y278{bottom:859.164667pt;}
.y171{bottom:859.390784pt;}
.y4f{bottom:860.646267pt;}
.y1f4{bottom:860.933067pt;}
.yf3{bottom:860.938533pt;}
.y87{bottom:861.452800pt;}
.yba{bottom:862.090000pt;}
.y1af{bottom:863.016644pt;}
.y166{bottom:863.378933pt;}
.y167{bottom:865.922400pt;}
.y169{bottom:866.471733pt;}
.y228{bottom:869.951333pt;}
.y233{bottom:870.298042pt;}
.y2cd{bottom:873.182933pt;}
.y2a8{bottom:873.397733pt;}
.y277{bottom:873.831333pt;}
.y160{bottom:874.576800pt;}
.y4e{bottom:874.814667pt;}
.y1f3{bottom:875.005867pt;}
.y86{bottom:875.352400pt;}
.yb9{bottom:875.777200pt;}
.y3c{bottom:877.013600pt;}
.y172{bottom:877.624229pt;}
.y1b0{bottom:879.434961pt;}
.y24c{bottom:879.435333pt;}
.y162{bottom:879.494000pt;}
.y1a6{bottom:881.358267pt;}
.y1a2{bottom:884.777467pt;}
.y229{bottom:886.372400pt;}
.y161{bottom:886.622400pt;}
.y234{bottom:886.720647pt;}
.y2a7{bottom:888.281200pt;}
.y276{bottom:888.498000pt;}
.y163{bottom:888.691067pt;}
.y4d{bottom:888.983200pt;}
.y1f2{bottom:889.078800pt;}
.yf2{bottom:889.232533pt;}
.y85{bottom:889.252000pt;}
.yb8{bottom:889.464400pt;}
.y3b{bottom:891.013600pt;}
.y1b1{bottom:895.847172pt;}
.y173{bottom:895.857673pt;}
.y24b{bottom:898.519067pt;}
.y4c{bottom:903.151600pt;}
.y275{bottom:903.164667pt;}
.yf1{bottom:903.379467pt;}
.y3a{bottom:905.013600pt;}
.y47{bottom:942.645600pt;}
.h25{height:16.242078pt;}
.h22{height:16.277980pt;}
.h2a{height:16.288289pt;}
.h1d{height:16.917880pt;}
.h24{height:19.923668pt;}
.h21{height:19.967746pt;}
.h2c{height:19.980187pt;}
.hf{height:20.461934pt;}
.h1c{height:20.752505pt;}
.h26{height:21.061811pt;}
.h1f{height:21.665613pt;}
.h13{height:21.777656pt;}
.h17{height:21.875313pt;}
.h1a{height:24.734938pt;}
.h15{height:27.792969pt;}
.h32{height:29.645833pt;}
.h28{height:33.351562pt;}
.h1e{height:33.710946pt;}
.h10{height:35.097656pt;}
.h18{height:35.195312pt;}
.h16{height:36.145833pt;}
.h12{height:37.031250pt;}
.h8{height:37.057292pt;}
.h9{height:37.437500pt;}
.h11{height:37.541667pt;}
.h2{height:42.117188pt;}
.h30{height:42.210908pt;}
.h31{height:42.211442pt;}
.h4{height:42.234375pt;}
.h5{height:42.632812pt;}
.he{height:43.375000pt;}
.ha{height:44.457031pt;}
.h7{height:46.796875pt;}
.h6{height:46.927083pt;}
.h3{height:47.369792pt;}
.hd{height:56.843750pt;}
.h2d{height:60.018229pt;}
.hb{height:60.078125pt;}
.hc{height:61.992188pt;}
.h2e{height:68.783854pt;}
.h27{height:69.299479pt;}
.h29{height:80.220012pt;}
.h14{height:90.632812pt;}
.h2f{height:95.966146pt;}
.h23{height:209.792000pt;}
.h1b{height:209.882667pt;}
.h19{height:210.029333pt;}
.h20{height:210.896000pt;}
.h2b{height:212.632000pt;}
.h0{height:1015.999733pt;}
.h1{height:1016.000000pt;}
.w2{width:291.022667pt;}
.w4{width:291.024000pt;}
.w3{width:292.233333pt;}
.w0{width:789.229067pt;}
.w1{width:789.333333pt;}
.x50{left:-6.459333pt;}
.x0{left:0.000000pt;}
.x17{left:3.910745pt;}
.x3{left:80.913333pt;}
.x4f{left:90.725922pt;}
.xa{left:96.031467pt;}
.x45{left:97.580000pt;}
.x4{left:99.810933pt;}
.xf{left:101.842133pt;}
.x31{left:104.474729pt;}
.x10{left:105.835333pt;}
.x54{left:106.782133pt;}
.x52{left:109.782133pt;}
.x55{left:110.725600pt;}
.xe{left:112.698133pt;}
.xd{left:114.929067pt;}
.x27{left:117.255600pt;}
.x32{left:120.282473pt;}
.x4c{left:121.672400pt;}
.x4b{left:122.677200pt;}
.x4d{left:125.691200pt;}
.x1{left:133.218133pt;}
.x4e{left:137.095733pt;}
.x11{left:146.425200pt;}
.x28{left:147.797867pt;}
.x51{left:148.880400pt;}
.x12{left:157.763733pt;}
.x2{left:168.488667pt;}
.x5b{left:170.923867pt;}
.x29{left:182.430800pt;}
.x2a{left:206.188933pt;}
.x2b{left:225.204800pt;}
.x53{left:227.924133pt;}
.x2c{left:255.747067pt;}
.x2d{left:282.910800pt;}
.x33{left:289.387467pt;}
.x16{left:290.355600pt;}
.xb{left:298.142800pt;}
.x2e{left:308.032400pt;}
.x56{left:329.031333pt;}
.x2f{left:335.189333pt;}
.x30{left:362.020667pt;}
.x4a{left:365.613067pt;}
.x8{left:372.627467pt;}
.x5{left:402.173200pt;}
.x24{left:406.911292pt;}
.x48{left:407.839867pt;}
.x47{left:408.886533pt;}
.x23{left:410.006155pt;}
.x46{left:412.393333pt;}
.x13{left:417.291333pt;}
.xc{left:418.839867pt;}
.x6{left:421.070800pt;}
.x18{left:422.834800pt;}
.x25{left:425.810101pt;}
.x5c{left:432.409467pt;}
.x15{left:436.188933pt;}
.x1d{left:437.763067pt;}
.x44{left:441.490946pt;}
.x14{left:443.958000pt;}
.x19{left:453.376267pt;}
.x49{left:462.939600pt;}
.x1e{left:464.228133pt;}
.x26{left:468.026400pt;}
.x34{left:468.943867pt;}
.x3d{left:479.781467pt;}
.x1f{left:484.595867pt;}
.x1a{left:487.993867pt;}
.x35{left:489.332800pt;}
.x9{left:500.605333pt;}
.x59{left:513.345600pt;}
.x58{left:520.842667pt;}
.x3e{left:521.811600pt;}
.x36{left:527.206667pt;}
.x37{left:546.180800pt;}
.x7{left:551.149867pt;}
.x3f{left:568.600533pt;}
.x20{left:570.115867pt;}
.x38{left:576.655867pt;}
.x39{left:585.543867pt;}
.x1b{left:588.448933pt;}
.x21{left:591.846933pt;}
.x57{left:616.706667pt;}
.x40{left:617.941467pt;}
.x3a{left:628.826400pt;}
.x41{left:630.870667pt;}
.x5a{left:636.933200pt;}
.x1c{left:640.714400pt;}
.x3b{left:655.923600pt;}
.x42{left:662.015867pt;}
.x22{left:671.934133pt;}
.x3c{left:683.704533pt;}
.x43{left:687.082400pt;}
}




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