
    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_a4b0e2370a8df93e1d5b9970.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c92e360d0014f1cd66371be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090000;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_0f19e3880c4b2471ba8f42b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.082000;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_78949b6142a768e0e1476f27.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_7f8e46090c94f9849b7233ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090000;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_24bd54e5d7a403ddb000d730.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_3c0c0bba085d4143a60d2e0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_de65b495e525701de70ac781.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_bef0bbfbee181e2699dd48e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090000;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_eca71ea64cf58e637661b1c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919922;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_a40508176a9d335dffe62b73.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_6ed5a7dba4a63caa1bf488f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919922;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_51f0c5ec6a4f7f7586939d4e.woff2')format("woff");}.fff{font-family:fff;line-height:0.916992;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_7a89c8f83aacb875589660f6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_507cf37e671378e2bd731e70.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.944000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:21.000000px;}
.v8{vertical-align:22.500000px;}
.v5{vertical-align:42.000000px;}
.v7{vertical-align:45.000000px;}
.v6{vertical-align:63.000000px;}
.lsb{letter-spacing:-4.560000px;}
.ls28{letter-spacing:-3.942000px;}
.ls20{letter-spacing:-3.906000px;}
.ls2e{letter-spacing:-2.322000px;}
.ls1c{letter-spacing:-1.755000px;}
.lsa{letter-spacing:-1.620000px;}
.ls8{letter-spacing:-1.260000px;}
.ls3{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-1.140000px;}
.ls21{letter-spacing:-1.092000px;}
.ls17{letter-spacing:-1.014000px;}
.ls18{letter-spacing:-0.975000px;}
.ls4{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.780000px;}
.ls5{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.624000px;}
.ls9{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.390000px;}
.lsc{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.157410px;}
.ls24{letter-spacing:0.268800px;}
.ls25{letter-spacing:0.269400px;}
.ls22{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.349800px;}
.ls1f{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.570000px;}
.ls12{letter-spacing:0.589800px;}
.ls14{letter-spacing:0.599400px;}
.ls1{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.672000px;}
.ls2b{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.816000px;}
.ls27{letter-spacing:0.864000px;}
.ls2c{letter-spacing:1.548000px;}
.lse{letter-spacing:2.976000px;}
.ls26{letter-spacing:3.676800px;}
.ls2a{letter-spacing:6.796800px;}
.ls29{letter-spacing:7.517400px;}
.ls23{letter-spacing:7.722600px;}
.ls1d{letter-spacing:11.889000px;}
.ls1e{letter-spacing:13.319400px;}
.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;}
}
.ws26{word-spacing:-28.836000px;}
.wsaf{word-spacing:-18.216000px;}
.ws1{word-spacing:-16.620000px;}
.ws3{word-spacing:-16.020000px;}
.ws7{word-spacing:-15.900000px;}
.ws29{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.300000px;}
.wsb5{word-spacing:-15.282000px;}
.wscb{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.880000px;}
.wsb4{word-spacing:-14.688000px;}
.ws9{word-spacing:-14.460000px;}
.ws2{word-spacing:-14.280000px;}
.ws6{word-spacing:-14.040000px;}
.ws8{word-spacing:-13.920000px;}
.wsdf{word-spacing:-13.068000px;}
.wsc{word-spacing:-12.816000px;}
.wsb{word-spacing:-11.472000px;}
.ws27{word-spacing:-11.214000px;}
.ws28{word-spacing:-10.710000px;}
.ws7b{word-spacing:-9.867000px;}
.ws45{word-spacing:-9.094800px;}
.wsca{word-spacing:-8.563104px;}
.ws70{word-spacing:-6.996000px;}
.wsd8{word-spacing:-4.374000px;}
.ws32{word-spacing:-3.600000px;}
.ws96{word-spacing:-3.120000px;}
.ws3d{word-spacing:-3.060000px;}
.ws1e{word-spacing:-2.976000px;}
.ws15{word-spacing:-2.940000px;}
.ws52{word-spacing:-2.760000px;}
.wsd3{word-spacing:-2.754000px;}
.ws65{word-spacing:-2.640000px;}
.wse6{word-spacing:-2.580000px;}
.ws3e{word-spacing:-2.400000px;}
.ws53{word-spacing:-2.220000px;}
.wsc5{word-spacing:-2.214000px;}
.wsc0{word-spacing:-2.160000px;}
.wsd4{word-spacing:-1.944000px;}
.ws54{word-spacing:-1.860000px;}
.ws50{word-spacing:-1.800000px;}
.wsbc{word-spacing:-1.782000px;}
.wsbb{word-spacing:-1.674000px;}
.ws46{word-spacing:-1.620000px;}
.ws62{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.404000px;}
.wsd2{word-spacing:-1.350000px;}
.ws59{word-spacing:-1.320000px;}
.ws44{word-spacing:-1.260000px;}
.ws4f{word-spacing:-1.200000px;}
.wsd7{word-spacing:-0.972000px;}
.ws16{word-spacing:-0.900000px;}
.ws19{word-spacing:-0.741000px;}
.ws1a{word-spacing:-0.720000px;}
.ws22{word-spacing:-0.672000px;}
.ws57{word-spacing:-0.660000px;}
.wse{word-spacing:-0.600000px;}
.wsab{word-spacing:-0.546000px;}
.ws64{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.480000px;}
.wsd6{word-spacing:-0.432000px;}
.ws66{word-spacing:-0.420000px;}
.wsdd{word-spacing:-0.378000px;}
.ws5e{word-spacing:-0.360000px;}
.ws75{word-spacing:-0.349800px;}
.ws69{word-spacing:-0.300000px;}
.wsb6{word-spacing:-0.270000px;}
.ws4c{word-spacing:-0.180000px;}
.ws97{word-spacing:-0.120000px;}
.wsbd{word-spacing:-0.108000px;}
.ws78{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsbe{word-spacing:0.054000px;}
.ws3f{word-spacing:0.120000px;}
.wsbf{word-spacing:0.162000px;}
.wse4{word-spacing:0.216000px;}
.ws63{word-spacing:0.360000px;}
.ws95{word-spacing:0.390000px;}
.ws3c{word-spacing:0.540000px;}
.ws1b{word-spacing:0.600000px;}
.ws4d{word-spacing:0.660000px;}
.ws47{word-spacing:0.720000px;}
.ws49{word-spacing:0.840000px;}
.wsd5{word-spacing:1.080000px;}
.wsdb{word-spacing:1.134000px;}
.wse0{word-spacing:1.188000px;}
.wsd{word-spacing:1.200000px;}
.ws1c{word-spacing:1.620000px;}
.ws21{word-spacing:1.632000px;}
.ws9f{word-spacing:1.680000px;}
.wse5{word-spacing:1.728000px;}
.ws6b{word-spacing:1.740000px;}
.ws79{word-spacing:1.920000px;}
.wse2{word-spacing:1.944000px;}
.ws4e{word-spacing:1.980000px;}
.wscf{word-spacing:1.998000px;}
.wsd1{word-spacing:2.052000px;}
.ws43{word-spacing:2.280000px;}
.ws77{word-spacing:2.460000px;}
.ws2d{word-spacing:2.520000px;}
.wsb9{word-spacing:2.538000px;}
.ws2a{word-spacing:2.580000px;}
.ws17{word-spacing:2.640000px;}
.ws6e{word-spacing:2.700000px;}
.ws3a{word-spacing:2.820000px;}
.wsd0{word-spacing:2.862000px;}
.wsc6{word-spacing:2.916000px;}
.ws18{word-spacing:3.000000px;}
.ws2e{word-spacing:3.180000px;}
.ws9b{word-spacing:3.240000px;}
.wse3{word-spacing:3.294000px;}
.ws13{word-spacing:3.300000px;}
.ws14{word-spacing:3.360000px;}
.wsc3{word-spacing:3.402000px;}
.ws68{word-spacing:3.480000px;}
.wsc1{word-spacing:3.510000px;}
.ws9c{word-spacing:3.540000px;}
.wsda{word-spacing:3.618000px;}
.wsdc{word-spacing:3.726000px;}
.ws6c{word-spacing:3.840000px;}
.wsba{word-spacing:3.888000px;}
.wsac{word-spacing:3.906000px;}
.wsb8{word-spacing:3.942000px;}
.ws40{word-spacing:3.960000px;}
.ws9a{word-spacing:4.020000px;}
.wsc9{word-spacing:4.104000px;}
.ws30{word-spacing:4.140000px;}
.wsc7{word-spacing:4.158000px;}
.ws60{word-spacing:4.260000px;}
.wsa3{word-spacing:4.320000px;}
.wsa5{word-spacing:4.500000px;}
.ws1d{word-spacing:4.560000px;}
.ws38{word-spacing:4.740000px;}
.ws5b{word-spacing:4.980000px;}
.ws61{word-spacing:5.040000px;}
.wsde{word-spacing:5.130000px;}
.ws98{word-spacing:5.160000px;}
.ws73{word-spacing:5.220000px;}
.ws71{word-spacing:5.280000px;}
.wsad{word-spacing:5.460000px;}
.ws4b{word-spacing:5.520000px;}
.ws5f{word-spacing:5.580000px;}
.ws31{word-spacing:5.640000px;}
.wsc4{word-spacing:5.670000px;}
.ws9d{word-spacing:5.700000px;}
.ws20{word-spacing:5.856000px;}
.ws67{word-spacing:5.940000px;}
.wsc8{word-spacing:5.994000px;}
.ws56{word-spacing:6.120000px;}
.ws74{word-spacing:6.240000px;}
.wsce{word-spacing:6.534000px;}
.wsae{word-spacing:6.600000px;}
.wsd9{word-spacing:6.642000px;}
.ws5a{word-spacing:6.660000px;}
.wsb0{word-spacing:6.780000px;}
.ws42{word-spacing:6.900000px;}
.ws58{word-spacing:6.960000px;}
.ws11{word-spacing:7.020000px;}
.wscd{word-spacing:7.236000px;}
.ws2c{word-spacing:7.320000px;}
.ws2b{word-spacing:7.440000px;}
.wsb7{word-spacing:7.452000px;}
.ws1f{word-spacing:7.488000px;}
.wsa0{word-spacing:7.560000px;}
.ws10{word-spacing:7.860000px;}
.ws36{word-spacing:8.040000px;}
.ws99{word-spacing:8.100000px;}
.ws5d{word-spacing:8.160000px;}
.ws41{word-spacing:8.340000px;}
.wsa1{word-spacing:8.400000px;}
.ws6f{word-spacing:8.580000px;}
.ws39{word-spacing:8.700000px;}
.ws33{word-spacing:8.760000px;}
.wse1{word-spacing:8.910000px;}
.ws4a{word-spacing:8.940000px;}
.ws6d{word-spacing:9.120000px;}
.ws48{word-spacing:9.240000px;}
.wsb3{word-spacing:9.300000px;}
.ws12{word-spacing:9.420000px;}
.ws35{word-spacing:9.480000px;}
.wsf{word-spacing:9.660000px;}
.ws9e{word-spacing:9.780000px;}
.wscc{word-spacing:9.828000px;}
.ws51{word-spacing:10.740000px;}
.ws37{word-spacing:11.160000px;}
.wsa2{word-spacing:11.280000px;}
.ws3b{word-spacing:11.820000px;}
.wsb2{word-spacing:11.880000px;}
.ws5c{word-spacing:12.600000px;}
.ws2f{word-spacing:12.660000px;}
.wsa4{word-spacing:12.720000px;}
.ws72{word-spacing:13.260000px;}
.ws55{word-spacing:13.560000px;}
.ws24{word-spacing:13.680000px;}
.ws7a{word-spacing:13.980000px;}
.ws25{word-spacing:14.352000px;}
.ws34{word-spacing:15.120000px;}
.ws76{word-spacing:15.660000px;}
.wsb1{word-spacing:16.020000px;}
.ws23{word-spacing:26.160000px;}
.ws4{word-spacing:58.261800px;}
.ws82{word-spacing:72.423000px;}
.ws8e{word-spacing:80.262000px;}
.ws80{word-spacing:81.627000px;}
.ws8c{word-spacing:82.329000px;}
.ws89{word-spacing:82.836000px;}
.ws92{word-spacing:83.811000px;}
.ws93{word-spacing:84.240000px;}
.ws85{word-spacing:85.332000px;}
.ws7f{word-spacing:86.658000px;}
.ws88{word-spacing:88.569000px;}
.ws8d{word-spacing:90.051000px;}
.ws81{word-spacing:90.168000px;}
.ws7e{word-spacing:92.001000px;}
.ws87{word-spacing:93.366000px;}
.ws8b{word-spacing:94.848000px;}
.ws90{word-spacing:94.887000px;}
.wsa8{word-spacing:95.446800px;}
.ws7d{word-spacing:95.784000px;}
.ws84{word-spacing:95.979000px;}
.ws94{word-spacing:98.670000px;}
.wsa9{word-spacing:107.177400px;}
.wsaa{word-spacing:107.178000px;}
.ws7c{word-spacing:116.571000px;}
.ws91{word-spacing:322.164000px;}
.ws8f{word-spacing:425.865000px;}
.ws83{word-spacing:429.024000px;}
.ws8a{word-spacing:445.092000px;}
.ws86{word-spacing:447.432000px;}
.wsa6{word-spacing:632.254200px;}
.wsa7{word-spacing:648.886800px;}
._62{margin-left:-13.675800px;}
._9{margin-left:-11.075280px;}
._64{margin-left:-9.384000px;}
._63{margin-left:-7.356000px;}
._5{margin-left:-5.340000px;}
._3{margin-left:-4.200000px;}
._1{margin-left:-2.760000px;}
._2{margin-left:-1.440000px;}
._4{width:1.320000px;}
._a{width:2.418000px;}
._0{width:3.600000px;}
._16{width:4.608000px;}
._6{width:5.616000px;}
._8{width:6.732000px;}
._7{width:7.824000px;}
._e{width:8.910000px;}
._d{width:10.410000px;}
._f{width:11.502000px;}
._12{width:13.284000px;}
._11{width:16.158000px;}
._10{width:17.508000px;}
._15{width:18.998400px;}
._14{width:20.245800px;}
._13{width:21.280200px;}
._17{width:22.734000px;}
._1b{width:23.796000px;}
._b{width:26.856000px;}
._5c{width:35.470800px;}
._18{width:46.800000px;}
._19{width:48.000000px;}
._1a{width:49.039200px;}
._5e{width:58.948800px;}
._55{width:62.069400px;}
._54{width:64.020000px;}
._5b{width:65.908800px;}
._28{width:67.689000px;}
._4d{width:70.533000px;}
._3f{width:89.739000px;}
._21{width:100.230000px;}
._24{width:102.414000px;}
._39{width:104.073000px;}
._3c{width:106.977000px;}
._29{width:110.409000px;}
._1e{width:114.051000px;}
._60{width:118.391400px;}
._59{width:123.095400px;}
._58{width:124.510800px;}
._56{width:131.579400px;}
._57{width:135.972000px;}
._32{width:146.712000px;}
._2e{width:160.002000px;}
._30{width:162.771000px;}
._51{width:169.290000px;}
._2a{width:180.990000px;}
._4c{width:193.434000px;}
._1c{width:196.506000px;}
._36{width:214.716000px;}
._44{width:220.794000px;}
._42{width:226.875000px;}
._34{width:240.885000px;}
._4e{width:248.172000px;}
._3e{width:249.702000px;}
._41{width:255.942000px;}
._20{width:278.241000px;}
._2b{width:281.721000px;}
._3b{width:296.463000px;}
._23{width:312.957000px;}
._48{width:318.450000px;}
._26{width:322.905000px;}
._33{width:330.033000px;}
._4a{width:345.873000px;}
._61{width:374.898000px;}
._46{width:390.726000px;}
._3a{width:412.056000px;}
._53{width:472.113000px;}
._43{width:504.747000px;}
._2f{width:520.677000px;}
._5f{width:594.299400px;}
._22{width:641.733000px;}
._2c{width:676.512000px;}
._37{width:712.938000px;}
._3d{width:715.407000px;}
._47{width:778.173000px;}
._50{width:787.191000px;}
._45{width:795.981000px;}
._5d{width:813.700800px;}
._31{width:836.337000px;}
._40{width:837.468000px;}
._35{width:853.773000px;}
._52{width:883.284000px;}
._25{width:1033.923000px;}
._2d{width:1108.962000px;}
._1f{width:1214.727000px;}
._5a{width:1252.504200px;}
._4f{width:1275.096000px;}
._49{width:1323.108000px;}
._4b{width:1375.251000px;}
._c{width:1403.721600px;}
._27{width:1411.173000px;}
._38{width:1504.107000px;}
._1d{width:1705.707000px;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.984000px;}
.fsd{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fse{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5d{bottom:42.121050px;}
.y23{bottom:42.193200px;}
.y1d3{bottom:61.190250px;}
.y5{bottom:66.525004px;}
.y275{bottom:85.039350px;}
.y2c6{bottom:88.270800px;}
.y276{bottom:89.291400px;}
.y17d{bottom:89.615400px;}
.y274{bottom:89.628450px;}
.y1c6{bottom:90.230850px;}
.y101{bottom:90.923550px;}
.yd0{bottom:90.938250px;}
.y156{bottom:90.985500px;}
.y8c{bottom:91.198050px;}
.y1bd{bottom:91.198200px;}
.y2fe{bottom:91.233450px;}
.ya3{bottom:91.375200px;}
.y1d2{bottom:94.616700px;}
.y229{bottom:96.271950px;}
.y4{bottom:97.125005px;}
.y5b{bottom:99.337500px;}
.y228{bottom:101.521950px;}
.y48{bottom:101.661000px;}
.y2c5{bottom:104.770800px;}
.y1c5{bottom:105.230850px;}
.y2fd{bottom:108.033450px;}
.y273{bottom:108.624450px;}
.y17c{bottom:109.115400px;}
.y100{bottom:110.423550px;}
.ycf{bottom:110.438250px;}
.y155{bottom:110.485500px;}
.y8b{bottom:110.698050px;}
.ya2{bottom:110.875200px;}
.y1bc{bottom:110.998200px;}
.y12b{bottom:111.501150px;}
.y1c4{bottom:120.230850px;}
.y47{bottom:121.161000px;}
.y2c4{bottom:121.270800px;}
.y227{bottom:123.075300px;}
.y226{bottom:128.325300px;}
.y18f{bottom:128.615400px;}
.y2fc{bottom:129.085350px;}
.yff{bottom:129.923550px;}
.yce{bottom:129.938250px;}
.y8a{bottom:130.198050px;}
.ya1{bottom:130.375200px;}
.y1bb{bottom:130.798050px;}
.y12a{bottom:131.001150px;}
.y154{bottom:134.237400px;}
.y1c3{bottom:135.230850px;}
.y2c3{bottom:137.770800px;}
.y22{bottom:139.264499px;}
.y46{bottom:140.661000px;}
.y2fb{bottom:145.885500px;}
.y17b{bottom:148.115400px;}
.y277{bottom:148.818900px;}
.y4b{bottom:149.068950px;}
.yfe{bottom:149.423550px;}
.ycd{bottom:149.438250px;}
.y89{bottom:149.698050px;}
.ya0{bottom:149.875200px;}
.y225{bottom:149.878650px;}
.y1c2{bottom:150.230850px;}
.y129{bottom:150.501150px;}
.y1ba{bottom:150.598050px;}
.y2c2{bottom:158.522700px;}
.y45{bottom:160.161000px;}
.y224{bottom:160.378650px;}
.y1c1{bottom:165.230850px;}
.y2fa{bottom:166.937400px;}
.y17a{bottom:167.615400px;}
.y256{bottom:168.301200px;}
.ycc{bottom:168.938250px;}
.y88{bottom:169.198050px;}
.y9f{bottom:169.375200px;}
.y128{bottom:170.001150px;}
.y1b9{bottom:170.398200px;}
.y2c1{bottom:175.022700px;}
.y222{bottom:176.682000px;}
.yfd{bottom:177.427500px;}
.y153{bottom:179.615400px;}
.y44{bottom:179.661000px;}
.y1c0{bottom:180.230850px;}
.y223{bottom:181.932000px;}
.y2f9{bottom:183.737400px;}
.y278{bottom:187.086600px;}
.y18e{bottom:187.115400px;}
.y221{bottom:187.182000px;}
.y255{bottom:187.801200px;}
.ycb{bottom:188.438250px;}
.y87{bottom:188.698050px;}
.y9e{bottom:188.875200px;}
.y127{bottom:189.501150px;}
.y1b8{bottom:190.198200px;}
.y2c0{bottom:191.522700px;}
.y1bf{bottom:195.230850px;}
.y4a{bottom:196.447050px;}
.y19{bottom:196.933500px;}
.y220{bottom:197.682000px;}
.y152{bottom:199.115400px;}
.y43{bottom:199.161000px;}
.y2f8{bottom:204.789300px;}
.y179{bottom:206.615400px;}
.y254{bottom:207.301200px;}
.yca{bottom:207.938250px;}
.y86{bottom:208.198050px;}
.y9d{bottom:208.375200px;}
.y126{bottom:209.001150px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1b7{bottom:209.998200px;}
.y2bf{bottom:212.274750px;}
.y49{bottom:212.947050px;}
.y21f{bottom:213.985350px;}
.y1be{bottom:214.226850px;}
.y151{bottom:218.615400px;}
.y2f7{bottom:221.589300px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y21e{bottom:224.485350px;}
.y178{bottom:226.115400px;}
.y253{bottom:226.801200px;}
.yc9{bottom:227.438250px;}
.y85{bottom:227.698050px;}
.y9c{bottom:227.875200px;}
.y125{bottom:228.501150px;}
.y2be{bottom:228.774750px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y42{bottom:237.795000px;}
.y150{bottom:238.115400px;}
.y21d{bottom:240.788700px;}
.y2f6{bottom:242.641350px;}
.y177{bottom:245.615400px;}
.y21c{bottom:246.038700px;}
.y252{bottom:246.301200px;}
.yc8{bottom:246.938250px;}
.y84{bottom:247.198050px;}
.yfc{bottom:247.360500px;}
.y9b{bottom:247.375200px;}
.y124{bottom:248.001150px;}
.y2bd{bottom:249.526650px;}
.y1b6{bottom:249.598050px;}
.y2f5{bottom:259.441350px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y18d{bottom:265.115400px;}
.y2bc{bottom:266.026650px;}
.yc7{bottom:266.438250px;}
.y83{bottom:266.698050px;}
.yfb{bottom:266.860500px;}
.y9a{bottom:266.875200px;}
.y21b{bottom:267.592050px;}
.y1b5{bottom:269.398200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y21a{bottom:272.842050px;}
.y123{bottom:276.005100px;}
.y14f{bottom:277.115400px;}
.y2f4{bottom:280.493250px;}
.y176{bottom:284.615400px;}
.y279{bottom:284.881950px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y251{bottom:285.301200px;}
.yc6{bottom:285.938250px;}
.y82{bottom:286.198050px;}
.yfa{bottom:286.360500px;}
.y99{bottom:286.375200px;}
.y2bb{bottom:286.778700px;}
.y1b4{bottom:289.198200px;}
.y219{bottom:294.395400px;}
.y122{bottom:295.505100px;}
.y14e{bottom:296.615400px;}
.y2f3{bottom:297.293250px;}
.y218{bottom:299.645400px;}
.y2ba{bottom:303.278700px;}
.y175{bottom:304.115400px;}
.y250{bottom:304.801200px;}
.yc5{bottom:305.438250px;}
.y81{bottom:305.698050px;}
.yf9{bottom:305.860500px;}
.y98{bottom:305.875200px;}
.y1b3{bottom:308.998200px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y14d{bottom:316.115400px;}
.y2f2{bottom:318.345300px;}
.y217{bottom:321.198750px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y174{bottom:323.615400px;}
.y2b9{bottom:324.030600px;}
.y24f{bottom:324.301200px;}
.yc4{bottom:324.938250px;}
.y80{bottom:325.198050px;}
.yf8{bottom:325.360500px;}
.y97{bottom:325.375200px;}
.y1b2{bottom:328.798050px;}
.y41{bottom:331.338300px;}
.y216{bottom:331.698750px;}
.y2f1{bottom:335.145300px;}
.y14c{bottom:335.615400px;}
.y27e{bottom:339.732300px;}
.y2b8{bottom:340.530600px;}
.y173{bottom:343.115400px;}
.y24e{bottom:343.801200px;}
.yc3{bottom:344.438250px;}
.y7f{bottom:344.698050px;}
.yf7{bottom:344.860500px;}
.y96{bottom:344.875200px;}
.y214{bottom:348.002100px;}
.y10{bottom:348.133500px;}
.y1b1{bottom:348.598050px;}
.y40{bottom:350.838300px;}
.y121{bottom:354.938250px;}
.y14b{bottom:355.115400px;}
.y2f0{bottom:356.197200px;}
.y213{bottom:358.502100px;}
.y2b7{bottom:361.282500px;}
.y172{bottom:362.615400px;}
.y24d{bottom:363.301200px;}
.y215{bottom:363.752100px;}
.yc2{bottom:363.938250px;}
.y7e{bottom:364.198050px;}
.yf6{bottom:364.360500px;}
.y95{bottom:364.375200px;}
.y18c{bottom:366.867300px;}
.y1b0{bottom:368.398200px;}
.y212{bottom:369.002100px;}
.y2ef{bottom:372.997200px;}
.y120{bottom:374.438250px;}
.y14a{bottom:374.615400px;}
.y2b6{bottom:377.782500px;}
.y211{bottom:379.502100px;}
.y171{bottom:382.115400px;}
.y24c{bottom:382.801200px;}
.yc1{bottom:383.438250px;}
.y272{bottom:383.698050px;}
.yf5{bottom:383.860500px;}
.y94{bottom:383.875200px;}
.yf{bottom:386.785499px;}
.y1af{bottom:388.198200px;}
.y3f{bottom:389.838300px;}
.y11f{bottom:393.938250px;}
.y2ee{bottom:394.049250px;}
.y149{bottom:394.115400px;}
.y280{bottom:394.582650px;}
.y210{bottom:395.805450px;}
.y2b5{bottom:398.534550px;}
.y20f{bottom:401.055450px;}
.y170{bottom:401.615400px;}
.y24b{bottom:402.301200px;}
.y7d{bottom:402.831900px;}
.yc0{bottom:402.938250px;}
.y271{bottom:403.198050px;}
.yf4{bottom:403.360500px;}
.y93{bottom:403.375200px;}
.y1ae{bottom:407.998050px;}
.ye{bottom:408.044999px;}
.y3e{bottom:409.338300px;}
.y2ed{bottom:410.849100px;}
.y18b{bottom:412.245300px;}
.y11e{bottom:413.438250px;}
.y148{bottom:413.615400px;}
.y2b4{bottom:415.034550px;}
.y16f{bottom:421.115400px;}
.y24a{bottom:421.801200px;}
.ybf{bottom:422.438250px;}
.y20e{bottom:422.608800px;}
.y270{bottom:422.698050px;}
.yf3{bottom:422.860500px;}
.y92{bottom:422.875200px;}
.y1ad{bottom:427.798200px;}
.y3d{bottom:428.838300px;}
.y18a{bottom:431.745300px;}
.y2ec{bottom:431.901150px;}
.y11d{bottom:432.938250px;}
.y20d{bottom:433.108800px;}
.y147{bottom:433.115400px;}
.y2b3{bottom:435.786600px;}
.y16e{bottom:440.615400px;}
.y249{bottom:441.301200px;}
.y289{bottom:441.831900px;}
.ybe{bottom:441.938250px;}
.y26f{bottom:442.198050px;}
.yf2{bottom:442.360500px;}
.y91{bottom:442.375200px;}
.y1ac{bottom:447.598200px;}
.y3c{bottom:448.338300px;}
.y2eb{bottom:448.701150px;}
.y20c{bottom:449.412300px;}
.y282{bottom:449.433150px;}
.y189{bottom:451.245300px;}
.y2b2{bottom:452.286600px;}
.y11c{bottom:452.438250px;}
.y146{bottom:452.615400px;}
.y20b{bottom:454.662300px;}
.y16d{bottom:460.115400px;}
.y288{bottom:461.331900px;}
.ybd{bottom:461.438250px;}
.y28e{bottom:461.698050px;}
.yf1{bottom:461.860500px;}
.y90{bottom:461.875200px;}
.y2ea{bottom:465.501150px;}
.y312{bottom:467.315250px;}
.y1ab{bottom:467.398200px;}
.y3b{bottom:467.838300px;}
.y248{bottom:469.305150px;}
.y188{bottom:470.745300px;}
.y11b{bottom:471.938250px;}
.y145{bottom:472.115400px;}
.y2b1{bottom:473.038500px;}
.y209{bottom:476.215650px;}
.y16c{bottom:479.615400px;}
.ybc{bottom:480.938250px;}
.y26e{bottom:481.198050px;}
.yf0{bottom:481.360500px;}
.y7c{bottom:481.375200px;}
.y20a{bottom:481.465650px;}
.y2e9{bottom:486.553050px;}
.y208{bottom:486.715650px;}
.y311{bottom:486.815250px;}
.y1aa{bottom:487.198200px;}
.y3a{bottom:487.338300px;}
.y2b0{bottom:489.538500px;}
.y11a{bottom:491.438250px;}
.y144{bottom:491.615400px;}
.y207{bottom:497.215650px;}
.y16b{bottom:499.115400px;}
.ybb{bottom:500.438250px;}
.y26d{bottom:500.698050px;}
.y7b{bottom:500.875200px;}
.yd{bottom:502.864502px;}
.y2e8{bottom:503.353200px;}
.y284{bottom:504.283500px;}
.y2af{bottom:506.038500px;}
.y39{bottom:506.838300px;}
.y1a9{bottom:506.998050px;}
.y187{bottom:509.745300px;}
.y119{bottom:510.938250px;}
.y143{bottom:511.115400px;}
.y206{bottom:513.518850px;}
.y16a{bottom:518.615400px;}
.yba{bottom:519.938250px;}
.y26c{bottom:520.198050px;}
.yef{bottom:520.360500px;}
.y7a{bottom:520.375200px;}
.yc{bottom:520.864502px;}
.y205{bottom:524.018850px;}
.y2e7{bottom:524.405100px;}
.y247{bottom:525.738300px;}
.y310{bottom:525.815250px;}
.y38{bottom:526.338300px;}
.y2ae{bottom:526.790400px;}
.y1a8{bottom:526.798200px;}
.y186{bottom:529.245300px;}
.y142{bottom:530.615400px;}
.y169{bottom:538.115400px;}
.yb{bottom:538.864499px;}
.yb9{bottom:539.438250px;}
.y26b{bottom:539.698050px;}
.yee{bottom:539.860500px;}
.y79{bottom:539.875200px;}
.y204{bottom:540.322200px;}
.y2e6{bottom:541.205100px;}
.y2ad{bottom:543.290400px;}
.y246{bottom:545.238300px;}
.y30f{bottom:545.315250px;}
.y37{bottom:545.838300px;}
.y185{bottom:548.745300px;}
.y118{bottom:549.938250px;}
.y141{bottom:550.115400px;}
.y203{bottom:550.822200px;}
.ya{bottom:556.864499px;}
.y168{bottom:557.615400px;}
.y2e5{bottom:558.005100px;}
.yb8{bottom:558.938250px;}
.y287{bottom:559.133850px;}
.y26a{bottom:559.198050px;}
.yed{bottom:559.360500px;}
.y78{bottom:559.375200px;}
.y2ac{bottom:564.042450px;}
.y245{bottom:564.738300px;}
.y30e{bottom:564.815250px;}
.y36{bottom:565.338300px;}
.y1a7{bottom:565.732050px;}
.y202{bottom:567.125700px;}
.y184{bottom:568.245300px;}
.y117{bottom:569.438250px;}
.y140{bottom:569.615400px;}
.y167{bottom:577.115400px;}
.y201{bottom:577.625700px;}
.yb7{bottom:578.438250px;}
.y269{bottom:578.698050px;}
.yec{bottom:578.860500px;}
.y77{bottom:578.875200px;}
.y2e4{bottom:579.057000px;}
.y2ab{bottom:580.542450px;}
.y244{bottom:584.238300px;}
.y30d{bottom:584.315250px;}
.y35{bottom:584.838300px;}
.y1a6{bottom:585.232050px;}
.y183{bottom:587.745300px;}
.y116{bottom:588.938250px;}
.y13f{bottom:589.115400px;}
.y1ff{bottom:593.929050px;}
.y166{bottom:596.615400px;}
.yb6{bottom:597.938250px;}
.y268{bottom:598.198050px;}
.yeb{bottom:598.360500px;}
.y76{bottom:598.375200px;}
.y2e3{bottom:600.109050px;}
.y2aa{bottom:601.294350px;}
.y243{bottom:603.738300px;}
.y30c{bottom:603.815250px;}
.y34{bottom:604.338300px;}
.y1fd{bottom:604.429050px;}
.y1a5{bottom:604.732050px;}
.y182{bottom:607.245300px;}
.y115{bottom:608.438250px;}
.y13e{bottom:608.615400px;}
.y200{bottom:609.679050px;}
.y27a{bottom:613.984200px;}
.y1fc{bottom:614.929050px;}
.y2e2{bottom:616.909050px;}
.yb5{bottom:617.438250px;}
.y267{bottom:617.698050px;}
.y2a9{bottom:617.794350px;}
.yea{bottom:617.860500px;}
.y75{bottom:617.875200px;}
.y165{bottom:620.367300px;}
.y242{bottom:623.238300px;}
.y30b{bottom:623.315250px;}
.y33{bottom:623.838300px;}
.y1fe{bottom:625.429050px;}
.y181{bottom:626.745300px;}
.y114{bottom:627.938250px;}
.y13d{bottom:628.115400px;}
.yb4{bottom:636.938250px;}
.y266{bottom:637.198050px;}
.ye9{bottom:637.360500px;}
.y74{bottom:637.375200px;}
.y2e1{bottom:637.960950px;}
.y2a8{bottom:638.546400px;}
.y1fb{bottom:641.732400px;}
.y241{bottom:642.738300px;}
.y30a{bottom:642.815250px;}
.y32{bottom:643.338300px;}
.y9{bottom:645.510000px;}
.y180{bottom:646.245300px;}
.y1fa{bottom:646.982400px;}
.y113{bottom:647.438250px;}
.y13c{bottom:647.615400px;}
.y2e0{bottom:654.760950px;}
.y2a7{bottom:655.046400px;}
.yb3{bottom:656.438250px;}
.y28d{bottom:656.698050px;}
.ye8{bottom:656.860500px;}
.y73{bottom:656.875200px;}
.y240{bottom:662.238300px;}
.y309{bottom:662.315250px;}
.y164{bottom:665.745300px;}
.y8{bottom:666.771000px;}
.y112{bottom:666.938250px;}
.y13b{bottom:667.115400px;}
.y1f8{bottom:668.535750px;}
.y27b{bottom:673.511850px;}
.y1f9{bottom:673.785750px;}
.y2a6{bottom:675.798300px;}
.y2df{bottom:675.813000px;}
.yb2{bottom:675.938250px;}
.y265{bottom:676.198050px;}
.ye7{bottom:676.360500px;}
.y72{bottom:676.375200px;}
.y1f7{bottom:679.035750px;}
.y23f{bottom:681.738300px;}
.y31{bottom:681.972150px;}
.y163{bottom:685.245300px;}
.y111{bottom:686.438250px;}
.y13a{bottom:686.615400px;}
.y1a4{bottom:689.275350px;}
.y1f6{bottom:689.535750px;}
.y2a5{bottom:692.298300px;}
.y2de{bottom:692.613000px;}
.y264{bottom:695.698050px;}
.ye6{bottom:695.860500px;}
.y71{bottom:695.875200px;}
.y5a{bottom:699.629850px;}
.y308{bottom:700.949250px;}
.y23e{bottom:701.238300px;}
.y17f{bottom:704.745300px;}
.y1f5{bottom:705.839100px;}
.y110{bottom:705.938250px;}
.y139{bottom:706.115400px;}
.y1a3{bottom:709.075350px;}
.y27c{bottom:711.779550px;}
.y2a4{bottom:713.050350px;}
.y2dd{bottom:713.664900px;}
.yb1{bottom:714.938250px;}
.y263{bottom:715.198050px;}
.ye5{bottom:715.360500px;}
.y70{bottom:715.375200px;}
.y59{bottom:716.129850px;}
.y1f4{bottom:716.339100px;}
.y23d{bottom:720.738300px;}
.y162{bottom:724.245300px;}
.y10f{bottom:725.438250px;}
.y138{bottom:725.615400px;}
.y7{bottom:726.298500px;}
.y1a2{bottom:728.875350px;}
.y2a3{bottom:729.550350px;}
.y2dc{bottom:730.464900px;}
.y58{bottom:732.629850px;}
.y1f3{bottom:732.642450px;}
.yb0{bottom:734.438250px;}
.y262{bottom:734.698050px;}
.ye4{bottom:734.860500px;}
.y8f{bottom:734.875200px;}
.y1f1{bottom:737.892450px;}
.y23c{bottom:740.238300px;}
.y1f2{bottom:743.142450px;}
.y161{bottom:743.745300px;}
.y10e{bottom:744.938250px;}
.y1a1{bottom:748.675350px;}
.y57{bottom:749.129850px;}
.y137{bottom:749.367300px;}
.y2a2{bottom:750.302250px;}
.y2db{bottom:751.516950px;}
.y30{bottom:752.495700px;}
.y3{bottom:752.599495px;}
.yaf{bottom:753.938250px;}
.y28c{bottom:754.198050px;}
.ye3{bottom:754.360500px;}
.y6f{bottom:754.375200px;}
.y1f0{bottom:759.445800px;}
.y23b{bottom:759.738300px;}
.y160{bottom:763.245300px;}
.y10d{bottom:764.438250px;}
.y56{bottom:765.629850px;}
.y2a1{bottom:766.802250px;}
.y2da{bottom:768.316800px;}
.y1a0{bottom:768.475350px;}
.y1ef{bottom:769.945800px;}
.y307{bottom:771.472800px;}
.y2f{bottom:771.995700px;}
.yae{bottom:773.438250px;}
.y261{bottom:773.698050px;}
.ye2{bottom:773.860500px;}
.y6e{bottom:773.875200px;}
.y23a{bottom:779.238300px;}
.y55{bottom:782.129850px;}
.y15f{bottom:782.745300px;}
.y10c{bottom:783.938250px;}
.y1ee{bottom:786.249150px;}
.y2a0{bottom:787.554150px;}
.y19f{bottom:788.275200px;}
.y2d9{bottom:789.368850px;}
.y2e{bottom:791.495700px;}
.y1ed{bottom:791.499150px;}
.yad{bottom:792.938250px;}
.y260{bottom:793.198050px;}
.ye1{bottom:793.360500px;}
.y6d{bottom:793.375200px;}
.y136{bottom:798.495300px;}
.y54{bottom:798.629850px;}
.y239{bottom:798.738300px;}
.y15e{bottom:802.245300px;}
.y10b{bottom:803.438250px;}
.y29f{bottom:804.054150px;}
.y1d1{bottom:804.406800px;}
.y2d8{bottom:806.168850px;}
.y306{bottom:807.472800px;}
.y19e{bottom:808.075350px;}
.y27d{bottom:809.574900px;}
.yac{bottom:812.438250px;}
.y25f{bottom:812.698050px;}
.ye0{bottom:812.860500px;}
.y6c{bottom:812.875200px;}
.y1ec{bottom:813.052500px;}
.y135{bottom:817.995300px;}
.y238{bottom:818.238300px;}
.y1eb{bottom:818.302500px;}
.y15d{bottom:821.745300px;}
.y10a{bottom:822.938250px;}
.y29e{bottom:824.806050px;}
.y2d7{bottom:827.220900px;}
.y2d{bottom:830.495700px;}
.yab{bottom:831.938250px;}
.y25e{bottom:832.198050px;}
.ydf{bottom:832.360500px;}
.y6b{bottom:832.375200px;}
.y134{bottom:837.495300px;}
.y237{bottom:837.738300px;}
.y1ea{bottom:839.855850px;}
.y15c{bottom:841.245300px;}
.y29d{bottom:841.306050px;}
.y109{bottom:842.438250px;}
.y2d6{bottom:844.020750px;}
.y1e9{bottom:845.105850px;}
.y19d{bottom:847.675350px;}
.y2c{bottom:849.995700px;}
.y53{bottom:851.095650px;}
.yaa{bottom:851.438250px;}
.y25d{bottom:851.698050px;}
.yde{bottom:851.860500px;}
.y6a{bottom:851.875200px;}
.y133{bottom:856.995300px;}
.y236{bottom:857.238300px;}
.y15b{bottom:860.745300px;}
.y108{bottom:861.938250px;}
.y29c{bottom:862.058100px;}
.y27f{bottom:864.425250px;}
.y17e{bottom:864.997350px;}
.y2d5{bottom:865.072800px;}
.y1cb{bottom:866.438250px;}
.y1e8{bottom:866.659200px;}
.y19c{bottom:867.475350px;}
.y1d0{bottom:868.375200px;}
.y2b{bottom:869.495700px;}
.ya9{bottom:870.938250px;}
.y25c{bottom:871.198050px;}
.ydd{bottom:871.360500px;}
.y69{bottom:871.375200px;}
.y1e7{bottom:871.909200px;}
.y132{bottom:876.495300px;}
.y29b{bottom:878.558100px;}
.y2{bottom:879.369000px;}
.y15a{bottom:880.245300px;}
.y107{bottom:881.438250px;}
.y2d4{bottom:881.872800px;}
.y52{bottom:884.200650px;}
.y1ca{bottom:885.938250px;}
.y19b{bottom:887.275200px;}
.y1cf{bottom:887.875200px;}
.ya8{bottom:890.438250px;}
.y25b{bottom:890.698050px;}
.ydc{bottom:890.860500px;}
.y68{bottom:890.875200px;}
.y1e6{bottom:893.462550px;}
.y29a{bottom:895.058100px;}
.y131{bottom:895.995300px;}
.y235{bottom:896.238300px;}
.y159{bottom:899.745300px;}
.y106{bottom:900.938250px;}
.y51{bottom:902.200650px;}
.y2d3{bottom:902.924700px;}
.y1e5{bottom:903.962550px;}
.y1c9{bottom:905.438250px;}
.y19a{bottom:907.075200px;}
.y1ce{bottom:907.375200px;}
.y2a{bottom:908.495700px;}
.ya7{bottom:909.938250px;}
.y28b{bottom:910.198050px;}
.y67{bottom:910.375200px;}
.y305{bottom:915.472800px;}
.y130{bottom:915.495300px;}
.y234{bottom:915.738300px;}
.y299{bottom:915.810000px;}
.y158{bottom:919.245300px;}
.y281{bottom:919.275600px;}
.y2d2{bottom:919.724700px;}
.y1e4{bottom:920.265900px;}
.y105{bottom:920.438250px;}
.y1c8{bottom:924.938250px;}
.y1e3{bottom:925.515900px;}
.y199{bottom:926.875200px;}
.y29{bottom:927.995700px;}
.ya6{bottom:929.438250px;}
.y25a{bottom:929.698050px;}
.ydb{bottom:929.860500px;}
.y8e{bottom:929.875200px;}
.y304{bottom:932.272800px;}
.y298{bottom:932.310000px;}
.y50{bottom:934.990650px;}
.y12f{bottom:934.995300px;}
.y233{bottom:935.238300px;}
.y104{bottom:939.938250px;}
.y2d1{bottom:940.776750px;}
.y157{bottom:942.997350px;}
.y1cd{bottom:946.375200px;}
.y198{bottom:946.675200px;}
.y1e1{bottom:947.069250px;}
.y28{bottom:947.495700px;}
.y297{bottom:948.810000px;}
.y28a{bottom:948.831900px;}
.y259{bottom:949.198050px;}
.yda{bottom:949.360500px;}
.y66{bottom:949.375200px;}
.y1c7{bottom:952.942050px;}
.y303{bottom:953.324850px;}
.y12e{bottom:954.495300px;}
.y232{bottom:954.738300px;}
.ya5{bottom:957.442050px;}
.y1df{bottom:957.569250px;}
.y2d0{bottom:957.576750px;}
.y103{bottom:959.438250px;}
.y1e2{bottom:962.819250px;}
.y1cc{bottom:965.875200px;}
.y197{bottom:966.475200px;}
.y1{bottom:966.726000px;}
.y1de{bottom:968.069250px;}
.y258{bottom:968.698050px;}
.yd9{bottom:968.860500px;}
.y65{bottom:968.875200px;}
.y296{bottom:969.562050px;}
.y302{bottom:970.124850px;}
.y12d{bottom:973.995300px;}
.y283{bottom:974.126100px;}
.y231{bottom:974.238300px;}
.y2cf{bottom:974.376750px;}
.ya4{bottom:976.942050px;}
.y1e0{bottom:978.569250px;}
.y295{bottom:986.062050px;}
.y196{bottom:986.275200px;}
.y102{bottom:987.442050px;}
.yd8{bottom:988.360500px;}
.y64{bottom:988.375200px;}
.y4f{bottom:989.725650px;}
.y301{bottom:991.176750px;}
.y230{bottom:993.738300px;}
.y1dd{bottom:994.872600px;}
.y2ce{bottom:995.428800px;}
.y12c{bottom:997.747350px;}
.y1dc{bottom:1005.372600px;}
.y27{bottom:1005.995700px;}
.y195{bottom:1006.075200px;}
.y294{bottom:1006.814100px;}
.y257{bottom:1007.331900px;}
.yd7{bottom:1007.860500px;}
.y63{bottom:1007.875200px;}
.y300{bottom:1007.976900px;}
.y2cd{bottom:1012.228800px;}
.y22f{bottom:1013.238300px;}
.y1db{bottom:1021.675950px;}
.y4e{bottom:1023.190650px;}
.y293{bottom:1023.314100px;}
.y194{bottom:1025.875200px;}
.y1da{bottom:1026.925950px;}
.yd6{bottom:1027.360500px;}
.y62{bottom:1027.375200px;}
.y285{bottom:1028.976450px;}
.y2cc{bottom:1029.028800px;}
.y22e{bottom:1032.738300px;}
.y292{bottom:1039.814100px;}
.y26{bottom:1041.995700px;}
.y193{bottom:1045.675200px;}
.y2ff{bottom:1045.828800px;}
.yd5{bottom:1046.860500px;}
.y61{bottom:1046.875200px;}
.y1d9{bottom:1048.479300px;}
.y2cb{bottom:1050.080700px;}
.y22d{bottom:1052.238300px;}
.y1d8{bottom:1053.729300px;}
.y4d{bottom:1056.235650px;}
.y291{bottom:1060.565850px;}
.y192{bottom:1065.475200px;}
.yd4{bottom:1066.360500px;}
.y8d{bottom:1066.375200px;}
.y2ca{bottom:1066.880700px;}
.y22c{bottom:1071.738300px;}
.y1d7{bottom:1075.282650px;}
.y290{bottom:1077.065850px;}
.y25{bottom:1077.995700px;}
.y2c9{bottom:1083.680850px;}
.y286{bottom:1083.826800px;}
.y191{bottom:1085.275200px;}
.y1d6{bottom:1085.782650px;}
.yd3{bottom:1085.860500px;}
.y60{bottom:1085.875200px;}
.y22b{bottom:1091.238300px;}
.y1d5{bottom:1102.086150px;}
.y2c8{bottom:1104.732750px;}
.y190{bottom:1105.075200px;}
.yd2{bottom:1105.360500px;}
.y5f{bottom:1105.375200px;}
.y4c{bottom:1111.480650px;}
.y24{bottom:1113.995700px;}
.y28f{bottom:1116.951750px;}
.y22a{bottom:1119.242250px;}
.y2c7{bottom:1121.532750px;}
.yd1{bottom:1124.860500px;}
.y5e{bottom:1124.875200px;}
.y1d4{bottom:1126.032600px;}
.y5c{bottom:1181.891850px;}
.h16{height:19.703578px;}
.h1a{height:20.263805px;}
.h8{height:32.130000px;}
.h1b{height:33.930000px;}
.h17{height:34.757812px;}
.h20{height:36.540000px;}
.h9{height:39.648000px;}
.h12{height:41.760000px;}
.he{height:42.246094px;}
.hf{height:43.447266px;}
.h1f{height:44.608873px;}
.h15{height:44.609473px;}
.h18{height:45.309756px;}
.h19{height:46.980000px;}
.h3{height:48.195000px;}
.h10{height:49.590000px;}
.h13{height:52.092000px;}
.hb{height:52.200000px;}
.h14{height:54.810000px;}
.h1d{height:54.930000px;}
.h7{height:56.640000px;}
.h22{height:59.040000px;}
.h6{height:59.472000px;}
.hd{height:62.640000px;}
.h2{height:67.968000px;}
.h1c{height:75.930000px;}
.h21{height:81.540000px;}
.h11{height:93.960000px;}
.h5{height:96.288000px;}
.h1e{height:96.930000px;}
.hc{height:104.400000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:50.683500px;}
.xf{left:55.193550px;}
.x54{left:63.439350px;}
.x10{left:65.628450px;}
.x16{left:72.283500px;}
.x1d{left:91.216350px;}
.x6{left:97.795350px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x53{left:110.551200px;}
.x20{left:112.535250px;}
.x21{left:123.785250px;}
.x14{left:124.795350px;}
.x50{left:143.144100px;}
.x23{left:146.477100px;}
.x24{left:152.102100px;}
.x25{left:174.793950px;}
.x26{left:180.418950px;}
.x1e{left:183.327300px;}
.x22{left:188.952300px;}
.x1f{left:194.577300px;}
.x4{left:203.484001px;}
.x27{left:208.735800px;}
.x28{left:231.427650px;}
.x29{left:237.052650px;}
.x2a{left:259.744500px;}
.x2b{left:265.369500px;}
.x1a{left:282.330750px;}
.x2d{left:293.686350px;}
.x7{left:294.791100px;}
.x2e{left:316.378200px;}
.x2f{left:322.003200px;}
.x30{left:344.695050px;}
.x31{left:350.320050px;}
.x2c{left:358.853400px;}
.x32{left:373.011900px;}
.x33{left:378.636900px;}
.x34{left:401.328750px;}
.x35{left:406.953750px;}
.x52{left:428.118600px;}
.x36{left:429.645600px;}
.x11{left:435.826800px;}
.x38{left:452.337450px;}
.x3{left:454.959000px;}
.x17{left:457.086600px;}
.x13{left:462.826800px;}
.x12{left:482.598450px;}
.x39{left:486.279300px;}
.x3a{left:491.904300px;}
.x15{left:503.858250px;}
.x3b{left:514.596150px;}
.x19{left:515.716500px;}
.x3c{left:520.221150px;}
.x37{left:528.754650px;}
.x18{left:539.476650px;}
.x3d{left:542.913150px;}
.x3e{left:548.538150px;}
.x3f{left:571.230000px;}
.x51{left:573.685950px;}
.x40{left:576.855000px;}
.x41{left:599.546850px;}
.x42{left:605.171850px;}
.x44{left:622.238850px;}
.x45{left:633.488850px;}
.xb{left:638.007900px;}
.xa{left:643.187700px;}
.x46{left:656.180700px;}
.x47{left:661.805700px;}
.x8{left:669.504300px;}
.x48{left:684.497550px;}
.x49{left:690.122550px;}
.xc{left:691.370850px;}
.x9{left:692.482500px;}
.x43{left:698.655900px;}
.x4a{left:712.814550px;}
.x4b{left:718.439550px;}
.x4c{left:741.131400px;}
.x4d{left:746.756400px;}
.x1b{left:756.425250px;}
.x4e{left:769.448250px;}
.x4f{left:775.073250px;}
.xd{left:779.587950px;}
.x1c{left:801.900900px;}
.x5{left:821.276700px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:18.666667pt;}
.v8{vertical-align:20.000000pt;}
.v5{vertical-align:37.333333pt;}
.v7{vertical-align:40.000000pt;}
.v6{vertical-align:56.000000pt;}
.lsb{letter-spacing:-4.053333pt;}
.ls28{letter-spacing:-3.504000pt;}
.ls20{letter-spacing:-3.472000pt;}
.ls2e{letter-spacing:-2.064000pt;}
.ls1c{letter-spacing:-1.560000pt;}
.lsa{letter-spacing:-1.440000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-1.013333pt;}
.ls21{letter-spacing:-0.970667pt;}
.ls17{letter-spacing:-0.901333pt;}
.ls18{letter-spacing:-0.866667pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.554667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.346667pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.139920pt;}
.ls24{letter-spacing:0.238933pt;}
.ls25{letter-spacing:0.239467pt;}
.ls22{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.310933pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls12{letter-spacing:0.524267pt;}
.ls14{letter-spacing:0.532800pt;}
.ls1{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.597333pt;}
.ls2b{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.725333pt;}
.ls27{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:1.376000pt;}
.lse{letter-spacing:2.645333pt;}
.ls26{letter-spacing:3.268267pt;}
.ls2a{letter-spacing:6.041600pt;}
.ls29{letter-spacing:6.682133pt;}
.ls23{letter-spacing:6.864533pt;}
.ls1d{letter-spacing:10.568000pt;}
.ls1e{letter-spacing:11.839467pt;}
.ws26{word-spacing:-25.632000pt;}
.wsaf{word-spacing:-16.192000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws3{word-spacing:-14.240000pt;}
.ws7{word-spacing:-14.133333pt;}
.ws29{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb5{word-spacing:-13.584000pt;}
.wscb{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.226667pt;}
.wsb4{word-spacing:-13.056000pt;}
.ws9{word-spacing:-12.853333pt;}
.ws2{word-spacing:-12.693333pt;}
.ws6{word-spacing:-12.480000pt;}
.ws8{word-spacing:-12.373333pt;}
.wsdf{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.392000pt;}
.wsb{word-spacing:-10.197333pt;}
.ws27{word-spacing:-9.968000pt;}
.ws28{word-spacing:-9.520000pt;}
.ws7b{word-spacing:-8.770667pt;}
.ws45{word-spacing:-8.084267pt;}
.wsca{word-spacing:-7.611648pt;}
.ws70{word-spacing:-6.218667pt;}
.wsd8{word-spacing:-3.888000pt;}
.ws32{word-spacing:-3.200000pt;}
.ws96{word-spacing:-2.773333pt;}
.ws3d{word-spacing:-2.720000pt;}
.ws1e{word-spacing:-2.645333pt;}
.ws15{word-spacing:-2.613333pt;}
.ws52{word-spacing:-2.453333pt;}
.wsd3{word-spacing:-2.448000pt;}
.ws65{word-spacing:-2.346667pt;}
.wse6{word-spacing:-2.293333pt;}
.ws3e{word-spacing:-2.133333pt;}
.ws53{word-spacing:-1.973333pt;}
.wsc5{word-spacing:-1.968000pt;}
.wsc0{word-spacing:-1.920000pt;}
.wsd4{word-spacing:-1.728000pt;}
.ws54{word-spacing:-1.653333pt;}
.ws50{word-spacing:-1.600000pt;}
.wsbc{word-spacing:-1.584000pt;}
.wsbb{word-spacing:-1.488000pt;}
.ws46{word-spacing:-1.440000pt;}
.ws62{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.248000pt;}
.wsd2{word-spacing:-1.200000pt;}
.ws59{word-spacing:-1.173333pt;}
.ws44{word-spacing:-1.120000pt;}
.ws4f{word-spacing:-1.066667pt;}
.wsd7{word-spacing:-0.864000pt;}
.ws16{word-spacing:-0.800000pt;}
.ws19{word-spacing:-0.658667pt;}
.ws1a{word-spacing:-0.640000pt;}
.ws22{word-spacing:-0.597333pt;}
.ws57{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.533333pt;}
.wsab{word-spacing:-0.485333pt;}
.ws64{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.426667pt;}
.wsd6{word-spacing:-0.384000pt;}
.ws66{word-spacing:-0.373333pt;}
.wsdd{word-spacing:-0.336000pt;}
.ws5e{word-spacing:-0.320000pt;}
.ws75{word-spacing:-0.310933pt;}
.ws69{word-spacing:-0.266667pt;}
.wsb6{word-spacing:-0.240000pt;}
.ws4c{word-spacing:-0.160000pt;}
.ws97{word-spacing:-0.106667pt;}
.wsbd{word-spacing:-0.096000pt;}
.ws78{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.048000pt;}
.ws3f{word-spacing:0.106667pt;}
.wsbf{word-spacing:0.144000pt;}
.wse4{word-spacing:0.192000pt;}
.ws63{word-spacing:0.320000pt;}
.ws95{word-spacing:0.346667pt;}
.ws3c{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.586667pt;}
.ws47{word-spacing:0.640000pt;}
.ws49{word-spacing:0.746667pt;}
.wsd5{word-spacing:0.960000pt;}
.wsdb{word-spacing:1.008000pt;}
.wse0{word-spacing:1.056000pt;}
.wsd{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws21{word-spacing:1.450667pt;}
.ws9f{word-spacing:1.493333pt;}
.wse5{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.546667pt;}
.ws79{word-spacing:1.706667pt;}
.wse2{word-spacing:1.728000pt;}
.ws4e{word-spacing:1.760000pt;}
.wscf{word-spacing:1.776000pt;}
.wsd1{word-spacing:1.824000pt;}
.ws43{word-spacing:2.026667pt;}
.ws77{word-spacing:2.186667pt;}
.ws2d{word-spacing:2.240000pt;}
.wsb9{word-spacing:2.256000pt;}
.ws2a{word-spacing:2.293333pt;}
.ws17{word-spacing:2.346667pt;}
.ws6e{word-spacing:2.400000pt;}
.ws3a{word-spacing:2.506667pt;}
.wsd0{word-spacing:2.544000pt;}
.wsc6{word-spacing:2.592000pt;}
.ws18{word-spacing:2.666667pt;}
.ws2e{word-spacing:2.826667pt;}
.ws9b{word-spacing:2.880000pt;}
.wse3{word-spacing:2.928000pt;}
.ws13{word-spacing:2.933333pt;}
.ws14{word-spacing:2.986667pt;}
.wsc3{word-spacing:3.024000pt;}
.ws68{word-spacing:3.093333pt;}
.wsc1{word-spacing:3.120000pt;}
.ws9c{word-spacing:3.146667pt;}
.wsda{word-spacing:3.216000pt;}
.wsdc{word-spacing:3.312000pt;}
.ws6c{word-spacing:3.413333pt;}
.wsba{word-spacing:3.456000pt;}
.wsac{word-spacing:3.472000pt;}
.wsb8{word-spacing:3.504000pt;}
.ws40{word-spacing:3.520000pt;}
.ws9a{word-spacing:3.573333pt;}
.wsc9{word-spacing:3.648000pt;}
.ws30{word-spacing:3.680000pt;}
.wsc7{word-spacing:3.696000pt;}
.ws60{word-spacing:3.786667pt;}
.wsa3{word-spacing:3.840000pt;}
.wsa5{word-spacing:4.000000pt;}
.ws1d{word-spacing:4.053333pt;}
.ws38{word-spacing:4.213333pt;}
.ws5b{word-spacing:4.426667pt;}
.ws61{word-spacing:4.480000pt;}
.wsde{word-spacing:4.560000pt;}
.ws98{word-spacing:4.586667pt;}
.ws73{word-spacing:4.640000pt;}
.ws71{word-spacing:4.693333pt;}
.wsad{word-spacing:4.853333pt;}
.ws4b{word-spacing:4.906667pt;}
.ws5f{word-spacing:4.960000pt;}
.ws31{word-spacing:5.013333pt;}
.wsc4{word-spacing:5.040000pt;}
.ws9d{word-spacing:5.066667pt;}
.ws20{word-spacing:5.205333pt;}
.ws67{word-spacing:5.280000pt;}
.wsc8{word-spacing:5.328000pt;}
.ws56{word-spacing:5.440000pt;}
.ws74{word-spacing:5.546667pt;}
.wsce{word-spacing:5.808000pt;}
.wsae{word-spacing:5.866667pt;}
.wsd9{word-spacing:5.904000pt;}
.ws5a{word-spacing:5.920000pt;}
.wsb0{word-spacing:6.026667pt;}
.ws42{word-spacing:6.133333pt;}
.ws58{word-spacing:6.186667pt;}
.ws11{word-spacing:6.240000pt;}
.wscd{word-spacing:6.432000pt;}
.ws2c{word-spacing:6.506667pt;}
.ws2b{word-spacing:6.613333pt;}
.wsb7{word-spacing:6.624000pt;}
.ws1f{word-spacing:6.656000pt;}
.wsa0{word-spacing:6.720000pt;}
.ws10{word-spacing:6.986667pt;}
.ws36{word-spacing:7.146667pt;}
.ws99{word-spacing:7.200000pt;}
.ws5d{word-spacing:7.253333pt;}
.ws41{word-spacing:7.413333pt;}
.wsa1{word-spacing:7.466667pt;}
.ws6f{word-spacing:7.626667pt;}
.ws39{word-spacing:7.733333pt;}
.ws33{word-spacing:7.786667pt;}
.wse1{word-spacing:7.920000pt;}
.ws4a{word-spacing:7.946667pt;}
.ws6d{word-spacing:8.106667pt;}
.ws48{word-spacing:8.213333pt;}
.wsb3{word-spacing:8.266667pt;}
.ws12{word-spacing:8.373333pt;}
.ws35{word-spacing:8.426667pt;}
.wsf{word-spacing:8.586667pt;}
.ws9e{word-spacing:8.693333pt;}
.wscc{word-spacing:8.736000pt;}
.ws51{word-spacing:9.546667pt;}
.ws37{word-spacing:9.920000pt;}
.wsa2{word-spacing:10.026667pt;}
.ws3b{word-spacing:10.506667pt;}
.wsb2{word-spacing:10.560000pt;}
.ws5c{word-spacing:11.200000pt;}
.ws2f{word-spacing:11.253333pt;}
.wsa4{word-spacing:11.306667pt;}
.ws72{word-spacing:11.786667pt;}
.ws55{word-spacing:12.053333pt;}
.ws24{word-spacing:12.160000pt;}
.ws7a{word-spacing:12.426667pt;}
.ws25{word-spacing:12.757333pt;}
.ws34{word-spacing:13.440000pt;}
.ws76{word-spacing:13.920000pt;}
.wsb1{word-spacing:14.240000pt;}
.ws23{word-spacing:23.253333pt;}
.ws4{word-spacing:51.788267pt;}
.ws82{word-spacing:64.376000pt;}
.ws8e{word-spacing:71.344000pt;}
.ws80{word-spacing:72.557333pt;}
.ws8c{word-spacing:73.181333pt;}
.ws89{word-spacing:73.632000pt;}
.ws92{word-spacing:74.498667pt;}
.ws93{word-spacing:74.880000pt;}
.ws85{word-spacing:75.850667pt;}
.ws7f{word-spacing:77.029333pt;}
.ws88{word-spacing:78.728000pt;}
.ws8d{word-spacing:80.045333pt;}
.ws81{word-spacing:80.149333pt;}
.ws7e{word-spacing:81.778667pt;}
.ws87{word-spacing:82.992000pt;}
.ws8b{word-spacing:84.309333pt;}
.ws90{word-spacing:84.344000pt;}
.wsa8{word-spacing:84.841600pt;}
.ws7d{word-spacing:85.141333pt;}
.ws84{word-spacing:85.314667pt;}
.ws94{word-spacing:87.706667pt;}
.wsa9{word-spacing:95.268800pt;}
.wsaa{word-spacing:95.269333pt;}
.ws7c{word-spacing:103.618667pt;}
.ws91{word-spacing:286.368000pt;}
.ws8f{word-spacing:378.546667pt;}
.ws83{word-spacing:381.354667pt;}
.ws8a{word-spacing:395.637333pt;}
.ws86{word-spacing:397.717333pt;}
.wsa6{word-spacing:562.003733pt;}
.wsa7{word-spacing:576.788267pt;}
._62{margin-left:-12.156267pt;}
._9{margin-left:-9.844693pt;}
._64{margin-left:-8.341333pt;}
._63{margin-left:-6.538667pt;}
._5{margin-left:-4.746667pt;}
._3{margin-left:-3.733333pt;}
._1{margin-left:-2.453333pt;}
._2{margin-left:-1.280000pt;}
._4{width:1.173333pt;}
._a{width:2.149333pt;}
._0{width:3.200000pt;}
._16{width:4.096000pt;}
._6{width:4.992000pt;}
._8{width:5.984000pt;}
._7{width:6.954667pt;}
._e{width:7.920000pt;}
._d{width:9.253333pt;}
._f{width:10.224000pt;}
._12{width:11.808000pt;}
._11{width:14.362667pt;}
._10{width:15.562667pt;}
._15{width:16.887467pt;}
._14{width:17.996267pt;}
._13{width:18.915733pt;}
._17{width:20.208000pt;}
._1b{width:21.152000pt;}
._b{width:23.872000pt;}
._5c{width:31.529600pt;}
._18{width:41.600000pt;}
._19{width:42.666667pt;}
._1a{width:43.590400pt;}
._5e{width:52.398933pt;}
._55{width:55.172800pt;}
._54{width:56.906667pt;}
._5b{width:58.585600pt;}
._28{width:60.168000pt;}
._4d{width:62.696000pt;}
._3f{width:79.768000pt;}
._21{width:89.093333pt;}
._24{width:91.034667pt;}
._39{width:92.509333pt;}
._3c{width:95.090667pt;}
._29{width:98.141333pt;}
._1e{width:101.378667pt;}
._60{width:105.236800pt;}
._59{width:109.418133pt;}
._58{width:110.676267pt;}
._56{width:116.959467pt;}
._57{width:120.864000pt;}
._32{width:130.410667pt;}
._2e{width:142.224000pt;}
._30{width:144.685333pt;}
._51{width:150.480000pt;}
._2a{width:160.880000pt;}
._4c{width:171.941333pt;}
._1c{width:174.672000pt;}
._36{width:190.858667pt;}
._44{width:196.261333pt;}
._42{width:201.666667pt;}
._34{width:214.120000pt;}
._4e{width:220.597333pt;}
._3e{width:221.957333pt;}
._41{width:227.504000pt;}
._20{width:247.325333pt;}
._2b{width:250.418667pt;}
._3b{width:263.522667pt;}
._23{width:278.184000pt;}
._48{width:283.066667pt;}
._26{width:287.026667pt;}
._33{width:293.362667pt;}
._4a{width:307.442667pt;}
._61{width:333.242667pt;}
._46{width:347.312000pt;}
._3a{width:366.272000pt;}
._53{width:419.656000pt;}
._43{width:448.664000pt;}
._2f{width:462.824000pt;}
._5f{width:528.266133pt;}
._22{width:570.429333pt;}
._2c{width:601.344000pt;}
._37{width:633.722667pt;}
._3d{width:635.917333pt;}
._47{width:691.709333pt;}
._50{width:699.725333pt;}
._45{width:707.538667pt;}
._5d{width:723.289600pt;}
._31{width:743.410667pt;}
._40{width:744.416000pt;}
._35{width:758.909333pt;}
._52{width:785.141333pt;}
._25{width:919.042667pt;}
._2d{width:985.744000pt;}
._1f{width:1079.757333pt;}
._5a{width:1113.337067pt;}
._4f{width:1133.418667pt;}
._49{width:1176.096000pt;}
._4b{width:1222.445333pt;}
._c{width:1247.752533pt;}
._27{width:1254.376000pt;}
._38{width:1336.984000pt;}
._1d{width:1516.184000pt;}
.fsc{font-size:24.874667pt;}
.fsd{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fse{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5d{bottom:37.440933pt;}
.y23{bottom:37.505067pt;}
.y1d3{bottom:54.391333pt;}
.y5{bottom:59.133337pt;}
.y275{bottom:75.590533pt;}
.y2c6{bottom:78.462933pt;}
.y276{bottom:79.370133pt;}
.y17d{bottom:79.658133pt;}
.y274{bottom:79.669733pt;}
.y1c6{bottom:80.205200pt;}
.y101{bottom:80.820933pt;}
.yd0{bottom:80.834000pt;}
.y156{bottom:80.876000pt;}
.y8c{bottom:81.064933pt;}
.y1bd{bottom:81.065067pt;}
.y2fe{bottom:81.096400pt;}
.ya3{bottom:81.222400pt;}
.y1d2{bottom:84.103733pt;}
.y229{bottom:85.575067pt;}
.y4{bottom:86.333337pt;}
.y5b{bottom:88.300000pt;}
.y228{bottom:90.241733pt;}
.y48{bottom:90.365333pt;}
.y2c5{bottom:93.129600pt;}
.y1c5{bottom:93.538533pt;}
.y2fd{bottom:96.029733pt;}
.y273{bottom:96.555067pt;}
.y17c{bottom:96.991467pt;}
.y100{bottom:98.154267pt;}
.ycf{bottom:98.167333pt;}
.y155{bottom:98.209333pt;}
.y8b{bottom:98.398267pt;}
.ya2{bottom:98.555733pt;}
.y1bc{bottom:98.665067pt;}
.y12b{bottom:99.112133pt;}
.y1c4{bottom:106.871867pt;}
.y47{bottom:107.698667pt;}
.y2c4{bottom:107.796267pt;}
.y227{bottom:109.400267pt;}
.y226{bottom:114.066933pt;}
.y18f{bottom:114.324800pt;}
.y2fc{bottom:114.742533pt;}
.yff{bottom:115.487600pt;}
.yce{bottom:115.500667pt;}
.y8a{bottom:115.731600pt;}
.ya1{bottom:115.889067pt;}
.y1bb{bottom:116.264933pt;}
.y12a{bottom:116.445467pt;}
.y154{bottom:119.322133pt;}
.y1c3{bottom:120.205200pt;}
.y2c3{bottom:122.462933pt;}
.y22{bottom:123.790666pt;}
.y46{bottom:125.032000pt;}
.y2fb{bottom:129.676000pt;}
.y17b{bottom:131.658133pt;}
.y277{bottom:132.283467pt;}
.y4b{bottom:132.505733pt;}
.yfe{bottom:132.820933pt;}
.ycd{bottom:132.834000pt;}
.y89{bottom:133.064933pt;}
.ya0{bottom:133.222400pt;}
.y225{bottom:133.225467pt;}
.y1c2{bottom:133.538533pt;}
.y129{bottom:133.778800pt;}
.y1ba{bottom:133.864933pt;}
.y2c2{bottom:140.909067pt;}
.y45{bottom:142.365333pt;}
.y224{bottom:142.558800pt;}
.y1c1{bottom:146.871867pt;}
.y2fa{bottom:148.388800pt;}
.y17a{bottom:148.991467pt;}
.y256{bottom:149.601067pt;}
.ycc{bottom:150.167333pt;}
.y88{bottom:150.398267pt;}
.y9f{bottom:150.555733pt;}
.y128{bottom:151.112133pt;}
.y1b9{bottom:151.465067pt;}
.y2c1{bottom:155.575733pt;}
.y222{bottom:157.050667pt;}
.yfd{bottom:157.713333pt;}
.y153{bottom:159.658133pt;}
.y44{bottom:159.698667pt;}
.y1c0{bottom:160.205200pt;}
.y223{bottom:161.717333pt;}
.y2f9{bottom:163.322133pt;}
.y278{bottom:166.299200pt;}
.y18e{bottom:166.324800pt;}
.y221{bottom:166.384000pt;}
.y255{bottom:166.934400pt;}
.ycb{bottom:167.500667pt;}
.y87{bottom:167.731600pt;}
.y9e{bottom:167.889067pt;}
.y127{bottom:168.445467pt;}
.y1b8{bottom:169.065067pt;}
.y2c0{bottom:170.242400pt;}
.y1bf{bottom:173.538533pt;}
.y4a{bottom:174.619600pt;}
.y19{bottom:175.052000pt;}
.y220{bottom:175.717333pt;}
.y152{bottom:176.991467pt;}
.y43{bottom:177.032000pt;}
.y2f8{bottom:182.034933pt;}
.y179{bottom:183.658133pt;}
.y254{bottom:184.267733pt;}
.yca{bottom:184.834000pt;}
.y86{bottom:185.064933pt;}
.y9d{bottom:185.222400pt;}
.y126{bottom:185.778800pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1b7{bottom:186.665067pt;}
.y2bf{bottom:188.688667pt;}
.y49{bottom:189.286267pt;}
.y21f{bottom:190.209200pt;}
.y1be{bottom:190.423867pt;}
.y151{bottom:194.324800pt;}
.y2f7{bottom:196.968267pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y21e{bottom:199.542533pt;}
.y178{bottom:200.991467pt;}
.y253{bottom:201.601067pt;}
.yc9{bottom:202.167333pt;}
.y85{bottom:202.398267pt;}
.y9c{bottom:202.555733pt;}
.y125{bottom:203.112133pt;}
.y2be{bottom:203.355333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y42{bottom:211.373333pt;}
.y150{bottom:211.658133pt;}
.y21d{bottom:214.034400pt;}
.y2f6{bottom:215.681200pt;}
.y177{bottom:218.324800pt;}
.y21c{bottom:218.701067pt;}
.y252{bottom:218.934400pt;}
.yc8{bottom:219.500667pt;}
.y84{bottom:219.731600pt;}
.yfc{bottom:219.876000pt;}
.y9b{bottom:219.889067pt;}
.y124{bottom:220.445467pt;}
.y2bd{bottom:221.801467pt;}
.y1b6{bottom:221.864933pt;}
.y2f5{bottom:230.614533pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y18d{bottom:235.658133pt;}
.y2bc{bottom:236.468133pt;}
.yc7{bottom:236.834000pt;}
.y83{bottom:237.064933pt;}
.yfb{bottom:237.209333pt;}
.y9a{bottom:237.222400pt;}
.y21b{bottom:237.859600pt;}
.y1b5{bottom:239.465067pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y21a{bottom:242.526267pt;}
.y123{bottom:245.337867pt;}
.y14f{bottom:246.324800pt;}
.y2f4{bottom:249.327333pt;}
.y176{bottom:252.991467pt;}
.y279{bottom:253.228400pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y251{bottom:253.601067pt;}
.yc6{bottom:254.167333pt;}
.y82{bottom:254.398267pt;}
.yfa{bottom:254.542667pt;}
.y99{bottom:254.555733pt;}
.y2bb{bottom:254.914400pt;}
.y1b4{bottom:257.065067pt;}
.y219{bottom:261.684800pt;}
.y122{bottom:262.671200pt;}
.y14e{bottom:263.658133pt;}
.y2f3{bottom:264.260667pt;}
.y218{bottom:266.351467pt;}
.y2ba{bottom:269.581067pt;}
.y175{bottom:270.324800pt;}
.y250{bottom:270.934400pt;}
.yc5{bottom:271.500667pt;}
.y81{bottom:271.731600pt;}
.yf9{bottom:271.876000pt;}
.y98{bottom:271.889067pt;}
.y1b3{bottom:274.665067pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y14d{bottom:280.991467pt;}
.y2f2{bottom:282.973600pt;}
.y217{bottom:285.510000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y174{bottom:287.658133pt;}
.y2b9{bottom:288.027200pt;}
.y24f{bottom:288.267733pt;}
.yc4{bottom:288.834000pt;}
.y80{bottom:289.064933pt;}
.yf8{bottom:289.209333pt;}
.y97{bottom:289.222400pt;}
.y1b2{bottom:292.264933pt;}
.y41{bottom:294.522933pt;}
.y216{bottom:294.843333pt;}
.y2f1{bottom:297.906933pt;}
.y14c{bottom:298.324800pt;}
.y27e{bottom:301.984267pt;}
.y2b8{bottom:302.693867pt;}
.y173{bottom:304.991467pt;}
.y24e{bottom:305.601067pt;}
.yc3{bottom:306.167333pt;}
.y7f{bottom:306.398267pt;}
.yf7{bottom:306.542667pt;}
.y96{bottom:306.555733pt;}
.y214{bottom:309.335200pt;}
.y10{bottom:309.452000pt;}
.y1b1{bottom:309.864933pt;}
.y40{bottom:311.856267pt;}
.y121{bottom:315.500667pt;}
.y14b{bottom:315.658133pt;}
.y2f0{bottom:316.619733pt;}
.y213{bottom:318.668533pt;}
.y2b7{bottom:321.140000pt;}
.y172{bottom:322.324800pt;}
.y24d{bottom:322.934400pt;}
.y215{bottom:323.335200pt;}
.yc2{bottom:323.500667pt;}
.y7e{bottom:323.731600pt;}
.yf6{bottom:323.876000pt;}
.y95{bottom:323.889067pt;}
.y18c{bottom:326.104267pt;}
.y1b0{bottom:327.465067pt;}
.y212{bottom:328.001867pt;}
.y2ef{bottom:331.553067pt;}
.y120{bottom:332.834000pt;}
.y14a{bottom:332.991467pt;}
.y2b6{bottom:335.806667pt;}
.y211{bottom:337.335200pt;}
.y171{bottom:339.658133pt;}
.y24c{bottom:340.267733pt;}
.yc1{bottom:340.834000pt;}
.y272{bottom:341.064933pt;}
.yf5{bottom:341.209333pt;}
.y94{bottom:341.222400pt;}
.yf{bottom:343.809333pt;}
.y1af{bottom:345.065067pt;}
.y3f{bottom:346.522933pt;}
.y11f{bottom:350.167333pt;}
.y2ee{bottom:350.266000pt;}
.y149{bottom:350.324800pt;}
.y280{bottom:350.740133pt;}
.y210{bottom:351.827067pt;}
.y2b5{bottom:354.252933pt;}
.y20f{bottom:356.493733pt;}
.y170{bottom:356.991467pt;}
.y24b{bottom:357.601067pt;}
.y7d{bottom:358.072800pt;}
.yc0{bottom:358.167333pt;}
.y271{bottom:358.398267pt;}
.yf4{bottom:358.542667pt;}
.y93{bottom:358.555733pt;}
.y1ae{bottom:362.664933pt;}
.ye{bottom:362.706666pt;}
.y3e{bottom:363.856267pt;}
.y2ed{bottom:365.199200pt;}
.y18b{bottom:366.440267pt;}
.y11e{bottom:367.500667pt;}
.y148{bottom:367.658133pt;}
.y2b4{bottom:368.919600pt;}
.y16f{bottom:374.324800pt;}
.y24a{bottom:374.934400pt;}
.ybf{bottom:375.500667pt;}
.y20e{bottom:375.652267pt;}
.y270{bottom:375.731600pt;}
.yf3{bottom:375.876000pt;}
.y92{bottom:375.889067pt;}
.y1ad{bottom:380.265067pt;}
.y3d{bottom:381.189600pt;}
.y18a{bottom:383.773600pt;}
.y2ec{bottom:383.912133pt;}
.y11d{bottom:384.834000pt;}
.y20d{bottom:384.985600pt;}
.y147{bottom:384.991467pt;}
.y2b3{bottom:387.365867pt;}
.y16e{bottom:391.658133pt;}
.y249{bottom:392.267733pt;}
.y289{bottom:392.739467pt;}
.ybe{bottom:392.834000pt;}
.y26f{bottom:393.064933pt;}
.yf2{bottom:393.209333pt;}
.y91{bottom:393.222400pt;}
.y1ac{bottom:397.865067pt;}
.y3c{bottom:398.522933pt;}
.y2eb{bottom:398.845467pt;}
.y20c{bottom:399.477600pt;}
.y282{bottom:399.496133pt;}
.y189{bottom:401.106933pt;}
.y2b2{bottom:402.032533pt;}
.y11c{bottom:402.167333pt;}
.y146{bottom:402.324800pt;}
.y20b{bottom:404.144267pt;}
.y16d{bottom:408.991467pt;}
.y288{bottom:410.072800pt;}
.ybd{bottom:410.167333pt;}
.y28e{bottom:410.398267pt;}
.yf1{bottom:410.542667pt;}
.y90{bottom:410.555733pt;}
.y2ea{bottom:413.778800pt;}
.y312{bottom:415.391333pt;}
.y1ab{bottom:415.465067pt;}
.y3b{bottom:415.856267pt;}
.y248{bottom:417.160133pt;}
.y188{bottom:418.440267pt;}
.y11b{bottom:419.500667pt;}
.y145{bottom:419.658133pt;}
.y2b1{bottom:420.478667pt;}
.y209{bottom:423.302800pt;}
.y16c{bottom:426.324800pt;}
.ybc{bottom:427.500667pt;}
.y26e{bottom:427.731600pt;}
.yf0{bottom:427.876000pt;}
.y7c{bottom:427.889067pt;}
.y20a{bottom:427.969467pt;}
.y2e9{bottom:432.491600pt;}
.y208{bottom:432.636133pt;}
.y311{bottom:432.724667pt;}
.y1aa{bottom:433.065067pt;}
.y3a{bottom:433.189600pt;}
.y2b0{bottom:435.145333pt;}
.y11a{bottom:436.834000pt;}
.y144{bottom:436.991467pt;}
.y207{bottom:441.969467pt;}
.y16b{bottom:443.658133pt;}
.ybb{bottom:444.834000pt;}
.y26d{bottom:445.064933pt;}
.y7b{bottom:445.222400pt;}
.yd{bottom:446.990669pt;}
.y2e8{bottom:447.425067pt;}
.y284{bottom:448.252000pt;}
.y2af{bottom:449.812000pt;}
.y39{bottom:450.522933pt;}
.y1a9{bottom:450.664933pt;}
.y187{bottom:453.106933pt;}
.y119{bottom:454.167333pt;}
.y143{bottom:454.324800pt;}
.y206{bottom:456.461200pt;}
.y16a{bottom:460.991467pt;}
.yba{bottom:462.167333pt;}
.y26c{bottom:462.398267pt;}
.yef{bottom:462.542667pt;}
.y7a{bottom:462.555733pt;}
.yc{bottom:462.990669pt;}
.y205{bottom:465.794533pt;}
.y2e7{bottom:466.137867pt;}
.y247{bottom:467.322933pt;}
.y310{bottom:467.391333pt;}
.y38{bottom:467.856267pt;}
.y2ae{bottom:468.258133pt;}
.y1a8{bottom:468.265067pt;}
.y186{bottom:470.440267pt;}
.y142{bottom:471.658133pt;}
.y169{bottom:478.324800pt;}
.yb{bottom:478.990666pt;}
.yb9{bottom:479.500667pt;}
.y26b{bottom:479.731600pt;}
.yee{bottom:479.876000pt;}
.y79{bottom:479.889067pt;}
.y204{bottom:480.286400pt;}
.y2e6{bottom:481.071200pt;}
.y2ad{bottom:482.924800pt;}
.y246{bottom:484.656267pt;}
.y30f{bottom:484.724667pt;}
.y37{bottom:485.189600pt;}
.y185{bottom:487.773600pt;}
.y118{bottom:488.834000pt;}
.y141{bottom:488.991467pt;}
.y203{bottom:489.619733pt;}
.ya{bottom:494.990666pt;}
.y168{bottom:495.658133pt;}
.y2e5{bottom:496.004533pt;}
.yb8{bottom:496.834000pt;}
.y287{bottom:497.007867pt;}
.y26a{bottom:497.064933pt;}
.yed{bottom:497.209333pt;}
.y78{bottom:497.222400pt;}
.y2ac{bottom:501.371067pt;}
.y245{bottom:501.989600pt;}
.y30e{bottom:502.058000pt;}
.y36{bottom:502.522933pt;}
.y1a7{bottom:502.872933pt;}
.y202{bottom:504.111733pt;}
.y184{bottom:505.106933pt;}
.y117{bottom:506.167333pt;}
.y140{bottom:506.324800pt;}
.y167{bottom:512.991467pt;}
.y201{bottom:513.445067pt;}
.yb7{bottom:514.167333pt;}
.y269{bottom:514.398267pt;}
.yec{bottom:514.542667pt;}
.y77{bottom:514.555733pt;}
.y2e4{bottom:514.717333pt;}
.y2ab{bottom:516.037733pt;}
.y244{bottom:519.322933pt;}
.y30d{bottom:519.391333pt;}
.y35{bottom:519.856267pt;}
.y1a6{bottom:520.206267pt;}
.y183{bottom:522.440267pt;}
.y116{bottom:523.500667pt;}
.y13f{bottom:523.658133pt;}
.y1ff{bottom:527.936933pt;}
.y166{bottom:530.324800pt;}
.yb6{bottom:531.500667pt;}
.y268{bottom:531.731600pt;}
.yeb{bottom:531.876000pt;}
.y76{bottom:531.889067pt;}
.y2e3{bottom:533.430267pt;}
.y2aa{bottom:534.483867pt;}
.y243{bottom:536.656267pt;}
.y30c{bottom:536.724667pt;}
.y34{bottom:537.189600pt;}
.y1fd{bottom:537.270267pt;}
.y1a5{bottom:537.539600pt;}
.y182{bottom:539.773600pt;}
.y115{bottom:540.834000pt;}
.y13e{bottom:540.991467pt;}
.y200{bottom:541.936933pt;}
.y27a{bottom:545.763733pt;}
.y1fc{bottom:546.603600pt;}
.y2e2{bottom:548.363600pt;}
.yb5{bottom:548.834000pt;}
.y267{bottom:549.064933pt;}
.y2a9{bottom:549.150533pt;}
.yea{bottom:549.209333pt;}
.y75{bottom:549.222400pt;}
.y165{bottom:551.437600pt;}
.y242{bottom:553.989600pt;}
.y30b{bottom:554.058000pt;}
.y33{bottom:554.522933pt;}
.y1fe{bottom:555.936933pt;}
.y181{bottom:557.106933pt;}
.y114{bottom:558.167333pt;}
.y13d{bottom:558.324800pt;}
.yb4{bottom:566.167333pt;}
.y266{bottom:566.398267pt;}
.ye9{bottom:566.542667pt;}
.y74{bottom:566.555733pt;}
.y2e1{bottom:567.076400pt;}
.y2a8{bottom:567.596800pt;}
.y1fb{bottom:570.428800pt;}
.y241{bottom:571.322933pt;}
.y30a{bottom:571.391333pt;}
.y32{bottom:571.856267pt;}
.y9{bottom:573.786667pt;}
.y180{bottom:574.440267pt;}
.y1fa{bottom:575.095467pt;}
.y113{bottom:575.500667pt;}
.y13c{bottom:575.658133pt;}
.y2e0{bottom:582.009733pt;}
.y2a7{bottom:582.263467pt;}
.yb3{bottom:583.500667pt;}
.y28d{bottom:583.731600pt;}
.ye8{bottom:583.876000pt;}
.y73{bottom:583.889067pt;}
.y240{bottom:588.656267pt;}
.y309{bottom:588.724667pt;}
.y164{bottom:591.773600pt;}
.y8{bottom:592.685334pt;}
.y112{bottom:592.834000pt;}
.y13b{bottom:592.991467pt;}
.y1f8{bottom:594.254000pt;}
.y27b{bottom:598.677200pt;}
.y1f9{bottom:598.920667pt;}
.y2a6{bottom:600.709600pt;}
.y2df{bottom:600.722667pt;}
.yb2{bottom:600.834000pt;}
.y265{bottom:601.064933pt;}
.ye7{bottom:601.209333pt;}
.y72{bottom:601.222400pt;}
.y1f7{bottom:603.587333pt;}
.y23f{bottom:605.989600pt;}
.y31{bottom:606.197467pt;}
.y163{bottom:609.106933pt;}
.y111{bottom:610.167333pt;}
.y13a{bottom:610.324800pt;}
.y1a4{bottom:612.689200pt;}
.y1f6{bottom:612.920667pt;}
.y2a5{bottom:615.376267pt;}
.y2de{bottom:615.656000pt;}
.y264{bottom:618.398267pt;}
.ye6{bottom:618.542667pt;}
.y71{bottom:618.555733pt;}
.y5a{bottom:621.893200pt;}
.y308{bottom:623.066000pt;}
.y23e{bottom:623.322933pt;}
.y17f{bottom:626.440267pt;}
.y1f5{bottom:627.412533pt;}
.y110{bottom:627.500667pt;}
.y139{bottom:627.658133pt;}
.y1a3{bottom:630.289200pt;}
.y27c{bottom:632.692933pt;}
.y2a4{bottom:633.822533pt;}
.y2dd{bottom:634.368800pt;}
.yb1{bottom:635.500667pt;}
.y263{bottom:635.731600pt;}
.ye5{bottom:635.876000pt;}
.y70{bottom:635.889067pt;}
.y59{bottom:636.559867pt;}
.y1f4{bottom:636.745867pt;}
.y23d{bottom:640.656267pt;}
.y162{bottom:643.773600pt;}
.y10f{bottom:644.834000pt;}
.y138{bottom:644.991467pt;}
.y7{bottom:645.598667pt;}
.y1a2{bottom:647.889200pt;}
.y2a3{bottom:648.489200pt;}
.y2dc{bottom:649.302133pt;}
.y58{bottom:651.226533pt;}
.y1f3{bottom:651.237733pt;}
.yb0{bottom:652.834000pt;}
.y262{bottom:653.064933pt;}
.ye4{bottom:653.209333pt;}
.y8f{bottom:653.222400pt;}
.y1f1{bottom:655.904400pt;}
.y23c{bottom:657.989600pt;}
.y1f2{bottom:660.571067pt;}
.y161{bottom:661.106933pt;}
.y10e{bottom:662.167333pt;}
.y1a1{bottom:665.489200pt;}
.y57{bottom:665.893200pt;}
.y137{bottom:666.104267pt;}
.y2a2{bottom:666.935333pt;}
.y2db{bottom:668.015067pt;}
.y30{bottom:668.885067pt;}
.y3{bottom:668.977329pt;}
.yaf{bottom:670.167333pt;}
.y28c{bottom:670.398267pt;}
.ye3{bottom:670.542667pt;}
.y6f{bottom:670.555733pt;}
.y1f0{bottom:675.062933pt;}
.y23b{bottom:675.322933pt;}
.y160{bottom:678.440267pt;}
.y10d{bottom:679.500667pt;}
.y56{bottom:680.559867pt;}
.y2a1{bottom:681.602000pt;}
.y2da{bottom:682.948267pt;}
.y1a0{bottom:683.089200pt;}
.y1ef{bottom:684.396267pt;}
.y307{bottom:685.753600pt;}
.y2f{bottom:686.218400pt;}
.yae{bottom:687.500667pt;}
.y261{bottom:687.731600pt;}
.ye2{bottom:687.876000pt;}
.y6e{bottom:687.889067pt;}
.y23a{bottom:692.656267pt;}
.y55{bottom:695.226533pt;}
.y15f{bottom:695.773600pt;}
.y10c{bottom:696.834000pt;}
.y1ee{bottom:698.888133pt;}
.y2a0{bottom:700.048133pt;}
.y19f{bottom:700.689067pt;}
.y2d9{bottom:701.661200pt;}
.y2e{bottom:703.551733pt;}
.y1ed{bottom:703.554800pt;}
.yad{bottom:704.834000pt;}
.y260{bottom:705.064933pt;}
.ye1{bottom:705.209333pt;}
.y6d{bottom:705.222400pt;}
.y136{bottom:709.773600pt;}
.y54{bottom:709.893200pt;}
.y239{bottom:709.989600pt;}
.y15e{bottom:713.106933pt;}
.y10b{bottom:714.167333pt;}
.y29f{bottom:714.714800pt;}
.y1d1{bottom:715.028267pt;}
.y2d8{bottom:716.594533pt;}
.y306{bottom:717.753600pt;}
.y19e{bottom:718.289200pt;}
.y27d{bottom:719.622133pt;}
.yac{bottom:722.167333pt;}
.y25f{bottom:722.398267pt;}
.ye0{bottom:722.542667pt;}
.y6c{bottom:722.555733pt;}
.y1ec{bottom:722.713333pt;}
.y135{bottom:727.106933pt;}
.y238{bottom:727.322933pt;}
.y1eb{bottom:727.380000pt;}
.y15d{bottom:730.440267pt;}
.y10a{bottom:731.500667pt;}
.y29e{bottom:733.160933pt;}
.y2d7{bottom:735.307467pt;}
.y2d{bottom:738.218400pt;}
.yab{bottom:739.500667pt;}
.y25e{bottom:739.731600pt;}
.ydf{bottom:739.876000pt;}
.y6b{bottom:739.889067pt;}
.y134{bottom:744.440267pt;}
.y237{bottom:744.656267pt;}
.y1ea{bottom:746.538533pt;}
.y15c{bottom:747.773600pt;}
.y29d{bottom:747.827600pt;}
.y109{bottom:748.834000pt;}
.y2d6{bottom:750.240667pt;}
.y1e9{bottom:751.205200pt;}
.y19d{bottom:753.489200pt;}
.y2c{bottom:755.551733pt;}
.y53{bottom:756.529467pt;}
.yaa{bottom:756.834000pt;}
.y25d{bottom:757.064933pt;}
.yde{bottom:757.209333pt;}
.y6a{bottom:757.222400pt;}
.y133{bottom:761.773600pt;}
.y236{bottom:761.989600pt;}
.y15b{bottom:765.106933pt;}
.y108{bottom:766.167333pt;}
.y29c{bottom:766.273867pt;}
.y27f{bottom:768.378000pt;}
.y17e{bottom:768.886533pt;}
.y2d5{bottom:768.953600pt;}
.y1cb{bottom:770.167333pt;}
.y1e8{bottom:770.363733pt;}
.y19c{bottom:771.089200pt;}
.y1d0{bottom:771.889067pt;}
.y2b{bottom:772.885067pt;}
.ya9{bottom:774.167333pt;}
.y25c{bottom:774.398267pt;}
.ydd{bottom:774.542667pt;}
.y69{bottom:774.555733pt;}
.y1e7{bottom:775.030400pt;}
.y132{bottom:779.106933pt;}
.y29b{bottom:780.940533pt;}
.y2{bottom:781.661334pt;}
.y15a{bottom:782.440267pt;}
.y107{bottom:783.500667pt;}
.y2d4{bottom:783.886933pt;}
.y52{bottom:785.956133pt;}
.y1ca{bottom:787.500667pt;}
.y19b{bottom:788.689067pt;}
.y1cf{bottom:789.222400pt;}
.ya8{bottom:791.500667pt;}
.y25b{bottom:791.731600pt;}
.ydc{bottom:791.876000pt;}
.y68{bottom:791.889067pt;}
.y1e6{bottom:794.188933pt;}
.y29a{bottom:795.607200pt;}
.y131{bottom:796.440267pt;}
.y235{bottom:796.656267pt;}
.y159{bottom:799.773600pt;}
.y106{bottom:800.834000pt;}
.y51{bottom:801.956133pt;}
.y2d3{bottom:802.599733pt;}
.y1e5{bottom:803.522267pt;}
.y1c9{bottom:804.834000pt;}
.y19a{bottom:806.289067pt;}
.y1ce{bottom:806.555733pt;}
.y2a{bottom:807.551733pt;}
.ya7{bottom:808.834000pt;}
.y28b{bottom:809.064933pt;}
.y67{bottom:809.222400pt;}
.y305{bottom:813.753600pt;}
.y130{bottom:813.773600pt;}
.y234{bottom:813.989600pt;}
.y299{bottom:814.053333pt;}
.y158{bottom:817.106933pt;}
.y281{bottom:817.133867pt;}
.y2d2{bottom:817.533067pt;}
.y1e4{bottom:818.014133pt;}
.y105{bottom:818.167333pt;}
.y1c8{bottom:822.167333pt;}
.y1e3{bottom:822.680800pt;}
.y199{bottom:823.889067pt;}
.y29{bottom:824.885067pt;}
.ya6{bottom:826.167333pt;}
.y25a{bottom:826.398267pt;}
.ydb{bottom:826.542667pt;}
.y8e{bottom:826.555733pt;}
.y304{bottom:828.686933pt;}
.y298{bottom:828.720000pt;}
.y50{bottom:831.102800pt;}
.y12f{bottom:831.106933pt;}
.y233{bottom:831.322933pt;}
.y104{bottom:835.500667pt;}
.y2d1{bottom:836.246000pt;}
.y157{bottom:838.219867pt;}
.y1cd{bottom:841.222400pt;}
.y198{bottom:841.489067pt;}
.y1e1{bottom:841.839333pt;}
.y28{bottom:842.218400pt;}
.y297{bottom:843.386667pt;}
.y28a{bottom:843.406133pt;}
.y259{bottom:843.731600pt;}
.yda{bottom:843.876000pt;}
.y66{bottom:843.889067pt;}
.y1c7{bottom:847.059600pt;}
.y303{bottom:847.399867pt;}
.y12e{bottom:848.440267pt;}
.y232{bottom:848.656267pt;}
.ya5{bottom:851.059600pt;}
.y1df{bottom:851.172667pt;}
.y2d0{bottom:851.179333pt;}
.y103{bottom:852.834000pt;}
.y1e2{bottom:855.839333pt;}
.y1cc{bottom:858.555733pt;}
.y197{bottom:859.089067pt;}
.y1{bottom:859.312000pt;}
.y1de{bottom:860.506000pt;}
.y258{bottom:861.064933pt;}
.yd9{bottom:861.209333pt;}
.y65{bottom:861.222400pt;}
.y296{bottom:861.832933pt;}
.y302{bottom:862.333200pt;}
.y12d{bottom:865.773600pt;}
.y283{bottom:865.889867pt;}
.y231{bottom:865.989600pt;}
.y2cf{bottom:866.112667pt;}
.ya4{bottom:868.392933pt;}
.y1e0{bottom:869.839333pt;}
.y295{bottom:876.499600pt;}
.y196{bottom:876.689067pt;}
.y102{bottom:877.726267pt;}
.yd8{bottom:878.542667pt;}
.y64{bottom:878.555733pt;}
.y4f{bottom:879.756133pt;}
.y301{bottom:881.046000pt;}
.y230{bottom:883.322933pt;}
.y1dd{bottom:884.331200pt;}
.y2ce{bottom:884.825600pt;}
.y12c{bottom:886.886533pt;}
.y1dc{bottom:893.664533pt;}
.y27{bottom:894.218400pt;}
.y195{bottom:894.289067pt;}
.y294{bottom:894.945867pt;}
.y257{bottom:895.406133pt;}
.yd7{bottom:895.876000pt;}
.y63{bottom:895.889067pt;}
.y300{bottom:895.979467pt;}
.y2cd{bottom:899.758933pt;}
.y22f{bottom:900.656267pt;}
.y1db{bottom:908.156400pt;}
.y4e{bottom:909.502800pt;}
.y293{bottom:909.612533pt;}
.y194{bottom:911.889067pt;}
.y1da{bottom:912.823067pt;}
.yd6{bottom:913.209333pt;}
.y62{bottom:913.222400pt;}
.y285{bottom:914.645733pt;}
.y2cc{bottom:914.692267pt;}
.y22e{bottom:917.989600pt;}
.y292{bottom:924.279200pt;}
.y26{bottom:926.218400pt;}
.y193{bottom:929.489067pt;}
.y2ff{bottom:929.625600pt;}
.yd5{bottom:930.542667pt;}
.y61{bottom:930.555733pt;}
.y1d9{bottom:931.981600pt;}
.y2cb{bottom:933.405067pt;}
.y22d{bottom:935.322933pt;}
.y1d8{bottom:936.648267pt;}
.y4d{bottom:938.876133pt;}
.y291{bottom:942.725200pt;}
.y192{bottom:947.089067pt;}
.yd4{bottom:947.876000pt;}
.y8d{bottom:947.889067pt;}
.y2ca{bottom:948.338400pt;}
.y22c{bottom:952.656267pt;}
.y1d7{bottom:955.806800pt;}
.y290{bottom:957.391867pt;}
.y25{bottom:958.218400pt;}
.y2c9{bottom:963.271867pt;}
.y286{bottom:963.401600pt;}
.y191{bottom:964.689067pt;}
.y1d6{bottom:965.140133pt;}
.yd3{bottom:965.209333pt;}
.y60{bottom:965.222400pt;}
.y22b{bottom:969.989600pt;}
.y1d5{bottom:979.632133pt;}
.y2c8{bottom:981.984667pt;}
.y190{bottom:982.289067pt;}
.yd2{bottom:982.542667pt;}
.y5f{bottom:982.555733pt;}
.y4c{bottom:987.982800pt;}
.y24{bottom:990.218400pt;}
.y28f{bottom:992.846000pt;}
.y22a{bottom:994.882000pt;}
.y2c7{bottom:996.918000pt;}
.yd1{bottom:999.876000pt;}
.y5e{bottom:999.889067pt;}
.y1d4{bottom:1000.917867pt;}
.y5c{bottom:1050.570533pt;}
.h16{height:17.514292pt;}
.h1a{height:18.012271pt;}
.h8{height:28.560000pt;}
.h1b{height:30.160000pt;}
.h17{height:30.895833pt;}
.h20{height:32.480000pt;}
.h9{height:35.242667pt;}
.h12{height:37.120000pt;}
.he{height:37.552083pt;}
.hf{height:38.619792pt;}
.h1f{height:39.652331pt;}
.h15{height:39.652865pt;}
.h18{height:40.275339pt;}
.h19{height:41.760000pt;}
.h3{height:42.840000pt;}
.h10{height:44.080000pt;}
.h13{height:46.304000pt;}
.hb{height:46.400000pt;}
.h14{height:48.720000pt;}
.h1d{height:48.826667pt;}
.h7{height:50.346667pt;}
.h22{height:52.480000pt;}
.h6{height:52.864000pt;}
.hd{height:55.680000pt;}
.h2{height:60.416000pt;}
.h1c{height:67.493333pt;}
.h21{height:72.480000pt;}
.h11{height:83.520000pt;}
.h5{height:85.589333pt;}
.h1e{height:86.160000pt;}
.hc{height:92.800000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:45.052000pt;}
.xf{left:49.060933pt;}
.x54{left:56.390533pt;}
.x10{left:58.336400pt;}
.x16{left:64.252000pt;}
.x1d{left:81.081200pt;}
.x6{left:86.929200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x53{left:98.267733pt;}
.x20{left:100.031333pt;}
.x21{left:110.031333pt;}
.x14{left:110.929200pt;}
.x50{left:127.239200pt;}
.x23{left:130.201867pt;}
.x24{left:135.201867pt;}
.x25{left:155.372400pt;}
.x26{left:160.372400pt;}
.x1e{left:162.957600pt;}
.x22{left:167.957600pt;}
.x1f{left:172.957600pt;}
.x4{left:180.874667pt;}
.x27{left:185.542933pt;}
.x28{left:205.713467pt;}
.x29{left:210.713467pt;}
.x2a{left:230.884000pt;}
.x2b{left:235.884000pt;}
.x1a{left:250.960667pt;}
.x2d{left:261.054533pt;}
.x7{left:262.036533pt;}
.x2e{left:281.225067pt;}
.x2f{left:286.225067pt;}
.x30{left:306.395600pt;}
.x31{left:311.395600pt;}
.x2c{left:318.980800pt;}
.x32{left:331.566133pt;}
.x33{left:336.566133pt;}
.x34{left:356.736667pt;}
.x35{left:361.736667pt;}
.x52{left:380.549867pt;}
.x36{left:381.907200pt;}
.x11{left:387.401600pt;}
.x38{left:402.077733pt;}
.x3{left:404.408000pt;}
.x17{left:406.299200pt;}
.x13{left:411.401600pt;}
.x12{left:428.976400pt;}
.x39{left:432.248267pt;}
.x3a{left:437.248267pt;}
.x15{left:447.874000pt;}
.x3b{left:457.418800pt;}
.x19{left:458.414667pt;}
.x3c{left:462.418800pt;}
.x37{left:470.004133pt;}
.x18{left:479.534800pt;}
.x3d{left:482.589467pt;}
.x3e{left:487.589467pt;}
.x3f{left:507.760000pt;}
.x51{left:509.943067pt;}
.x40{left:512.760000pt;}
.x41{left:532.930533pt;}
.x42{left:537.930533pt;}
.x44{left:553.101200pt;}
.x45{left:563.101200pt;}
.xb{left:567.118133pt;}
.xa{left:571.722400pt;}
.x46{left:583.271733pt;}
.x47{left:588.271733pt;}
.x8{left:595.114933pt;}
.x48{left:608.442267pt;}
.x49{left:613.442267pt;}
.xc{left:614.551867pt;}
.x9{left:615.540000pt;}
.x43{left:621.027467pt;}
.x4a{left:633.612933pt;}
.x4b{left:638.612933pt;}
.x4c{left:658.783467pt;}
.x4d{left:663.783467pt;}
.x1b{left:672.378000pt;}
.x4e{left:683.954000pt;}
.x4f{left:688.954000pt;}
.xd{left:692.967067pt;}
.x1c{left:712.800800pt;}
.x5{left:730.023733pt;}
}




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