
    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_badf015f5ff8db904b1dd908.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.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_a7fb7ce9a0f8e80757071161.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_9156a2c6dba0a17af3617b55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_8343853a3727b184234fb8d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.884000;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_17c3033a0131384bee86a167.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_b2c72344840bf5b162934f73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_d6fb2ff32754d2189ac98d16.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934000;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_64328b88cb61816ad8c3c524.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;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_83c91893154fcb29243adf94.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107910;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_359069661e3b7787341269a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022949;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_413497ee82f39a5ff138188f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.878906;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_fd5e50eaad6c9ec53c0a66db.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.022949;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_0d7c14dda0c6fbd8c66c5e33.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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_da6636de8ebe4f02630a8980.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.733000;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_b728622d0f9b206d20af53b8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.172000;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_d19f96d265e24dd3796bc53a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692383;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;}
.m6{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m5{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-11.233211px;}
.v5{vertical-align:-4.422000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.379486px;}
.v1{vertical-align:7.488000px;}
.v6{vertical-align:11.568000px;}
.v7{vertical-align:15.646657px;}
.v4{vertical-align:19.728000px;}
.v2{vertical-align:27.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000006px;}
.ls7{letter-spacing:0.000012px;}
.ls4{letter-spacing:0.000126px;}
.ls10{letter-spacing:0.281139px;}
.ls2f{letter-spacing:0.293492px;}
.ls2b{letter-spacing:0.295292px;}
.ls13{letter-spacing:0.295749px;}
.ls26{letter-spacing:0.616451px;}
.ls23{letter-spacing:0.632795px;}
.ls15{letter-spacing:0.635985px;}
.ls17{letter-spacing:0.636549px;}
.ls1f{letter-spacing:1.149801px;}
.ls1a{letter-spacing:1.470475px;}
.ls1d{letter-spacing:1.483362px;}
.ls2d{letter-spacing:1.483396px;}
.ls28{letter-spacing:1.483554px;}
.ls1c{letter-spacing:1.484527px;}
.ls30{letter-spacing:1.487144px;}
.ls24{letter-spacing:1.490505px;}
.ls2{letter-spacing:1.617677px;}
.ls1{letter-spacing:1.778178px;}
.ls27{letter-spacing:2.731558px;}
.ls20{letter-spacing:2.906271px;}
.ls9{letter-spacing:2.909871px;}
.lsc{letter-spacing:2.912271px;}
.ls25{letter-spacing:2.922814px;}
.ls29{letter-spacing:2.924614px;}
.ls2e{letter-spacing:2.925214px;}
.ls22{letter-spacing:2.928814px;}
.ls31{letter-spacing:2.961000px;}
.ls6{letter-spacing:3.055806px;}
.lsa{letter-spacing:3.248271px;}
.ls2c{letter-spacing:7.837796px;}
.ls2a{letter-spacing:8.177323px;}
.ls12{letter-spacing:10.458365px;}
.ls14{letter-spacing:10.463147px;}
.ls1e{letter-spacing:10.797891px;}
.ls18{letter-spacing:10.883969px;}
.lsd{letter-spacing:11.228277px;}
.ls38{letter-spacing:12.102286px;}
.ls37{letter-spacing:12.442286px;}
.ls36{letter-spacing:12.777982px;}
.ls35{letter-spacing:12.782286px;}
.ls34{letter-spacing:13.122286px;}
.lsf{letter-spacing:13.179357px;}
.ls16{letter-spacing:13.454271px;}
.ls1b{letter-spacing:13.454871px;}
.ls11{letter-spacing:13.794471px;}
.lsb{letter-spacing:13.796271px;}
.ls8{letter-spacing:16.175871px;}
.ls3{letter-spacing:19.038201px;}
.ls39{letter-spacing:19.686229px;}
.ls3a{letter-spacing:19.690054px;}
.ls33{letter-spacing:20.026702px;}
.ls32{letter-spacing:20.030527px;}
.lse{letter-spacing:692.750271px;}
.ls19{letter-spacing:730.508271px;}
.ls21{letter-spacing:734.246271px;}
.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;}
}
.ws24{word-spacing:-47.820600px;}
.ws18{word-spacing:-43.038000px;}
.wsb{word-spacing:-38.256000px;}
.ws16{word-spacing:-38.255400px;}
.ws6f{word-spacing:-29.762701px;}
.ws8{word-spacing:-24.230394px;}
.ws70{word-spacing:-21.538128px;}
.wsa{word-spacing:-21.270336px;}
.ws4{word-spacing:-14.011436px;}
.ws7{word-spacing:-13.437589px;}
.ws17{word-spacing:-12.610134px;}
.ws1{word-spacing:-12.375441px;}
.ws5{word-spacing:-11.955150px;}
.ws15{word-spacing:-11.208832px;}
.ws11{word-spacing:-9.807530px;}
.ws2{word-spacing:-9.563850px;}
.wse{word-spacing:-3.409609px;}
.wsd{word-spacing:-0.750783px;}
.ws10{word-spacing:-0.545155px;}
.wsf{word-spacing:-0.521245px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:1.781773px;}
.ws12{word-spacing:3.428737px;}
.ws6d{word-spacing:12.670188px;}
.ws6e{word-spacing:12.674014px;}
.ws6c{word-spacing:12.781129px;}
.wsc{word-spacing:15.900350px;}
.ws3{word-spacing:16.182491px;}
.ws14{word-spacing:56.560609px;}
.ws13{word-spacing:60.003595px;}
.ws4a{word-spacing:78.094574px;}
.ws47{word-spacing:98.503829px;}
.ws55{word-spacing:102.589506px;}
.ws3b{word-spacing:108.786881px;}
.ws57{word-spacing:121.717206px;}
.ws4b{word-spacing:128.247403px;}
.ws59{word-spacing:138.434816px;}
.ws5a{word-spacing:138.916834px;}
.ws41{word-spacing:142.466935px;}
.ws39{word-spacing:147.042281px;}
.ws38{word-spacing:147.868598px;}
.ws4f{word-spacing:150.967285px;}
.ws4c{word-spacing:153.002472px;}
.ws2d{word-spacing:155.049136px;}
.ws48{word-spacing:156.713246px;}
.ws21{word-spacing:157.772921px;}
.ws2f{word-spacing:159.284009px;}
.ws51{word-spacing:159.972606px;}
.ws50{word-spacing:160.454624px;}
.ws56{word-spacing:162.382696px;}
.ws31{word-spacing:165.511988px;}
.ws3f{word-spacing:168.235773px;}
.ws3c{word-spacing:168.989404px;}
.ws52{word-spacing:175.278592px;}
.ws54{word-spacing:175.760610px;}
.ws3d{word-spacing:176.636658px;}
.ws1a{word-spacing:176.900621px;}
.ws43{word-spacing:180.722335px;}
.ws40{word-spacing:181.544826px;}
.ws49{word-spacing:182.003891px;}
.ws46{word-spacing:182.034495px;}
.ws20{word-spacing:183.541758px;}
.ws53{word-spacing:185.400971px;}
.ws4d{word-spacing:185.477481px;}
.ws1e{word-spacing:187.367298px;}
.ws5c{word-spacing:189.222685px;}
.ws34{word-spacing:193.304536px;}
.ws2e{word-spacing:194.127027px;}
.ws30{word-spacing:195.129319px;}
.ws1f{word-spacing:196.028321px;}
.ws1b{word-spacing:196.854637px;}
.ws33{word-spacing:208.610522px;}
.ws45{word-spacing:210.312887px;}
.ws1d{word-spacing:211.334306px;}
.ws65{word-spacing:215.519447px;}
.ws5b{word-spacing:221.471987px;}
.ws22{word-spacing:221.797158px;}
.ws32{word-spacing:222.895088px;}
.ws37{word-spacing:223.193480px;}
.ws1c{word-spacing:225.622698px;}
.ws9{word-spacing:233.377068px;}
.ws4e{word-spacing:235.779507px;}
.ws3a{word-spacing:240.259214px;}
.ws44{word-spacing:242.562189px;}
.ws62{word-spacing:251.131399px;}
.ws68{word-spacing:251.360931px;}
.ws69{word-spacing:251.364757px;}
.ws5e{word-spacing:253.771021px;}
.ws36{word-spacing:255.144390px;}
.ws3e{word-spacing:256.869709px;}
.ws23{word-spacing:257.872000px;}
.ws2c{word-spacing:269.451910px;}
.ws19{word-spacing:272.179520px;}
.ws66{word-spacing:272.898721px;}
.ws5f{word-spacing:272.902547px;}
.ws61{word-spacing:287.868059px;}
.ws64{word-spacing:288.204707px;}
.ws60{word-spacing:294.436512px;}
.ws63{word-spacing:294.440337px;}
.ws6b{word-spacing:302.493099px;}
.ws6a{word-spacing:334.742401px;}
.ws5d{word-spacing:349.049921px;}
.ws35{word-spacing:353.192980px;}
.ws42{word-spacing:393.671019px;}
.ws58{word-spacing:456.937800px;}
.ws67{word-spacing:534.492972px;}
.ws2a{word-spacing:877.529144px;}
.ws2b{word-spacing:927.873250px;}
.ws28{word-spacing:944.896903px;}
.ws29{word-spacing:948.798954px;}
.ws25{word-spacing:975.386457px;}
.ws27{word-spacing:984.720775px;}
.ws26{word-spacing:1033.075600px;}
._3{margin-left:-17.343592px;}
._11{margin-left:-12.625134px;}
._10{margin-left:-11.624074px;}
._14{margin-left:-5.398946px;}
._9{margin-left:-4.131700px;}
._5{margin-left:-2.909369px;}
._4{margin-left:-1.867849px;}
._2{width:1.237697px;}
._1{width:2.291795px;}
._0{width:3.389274px;}
._7{width:5.349623px;}
._a{width:6.407684px;}
._d{width:7.833014px;}
._b{width:9.329799px;}
._8{width:10.350639px;}
._6{width:11.366336px;}
._f{width:12.744190px;}
._2e{width:13.853294px;}
._e{width:15.135220px;}
._12{width:16.220748px;}
._13{width:17.526250px;}
._15{width:19.061291px;}
._c{width:20.821089px;}
._1b{width:22.083553px;}
._20{width:23.738146px;}
._1f{width:25.373610px;}
._1d{width:27.119062px;}
._1c{width:28.285885px;}
._1a{width:30.193927px;}
._1e{width:34.363883px;}
._2f{width:37.835659px;}
._94{width:49.336513px;}
._25{width:68.044880px;}
._27{width:69.988254px;}
._2c{width:78.480953px;}
._2b{width:88.440612px;}
._78{width:94.242178px;}
._88{width:96.411259px;}
._22{width:105.076107px;}
._61{width:110.229110px;}
._24{width:113.408133px;}
._6a{width:118.997247px;}
._5f{width:130.462391px;}
._39{width:132.627646px;}
._53{width:140.454701px;}
._5e{width:151.162388px;}
._75{width:154.957323px;}
._16{width:160.347509px;}
._29{width:161.445439px;}
._56{width:176.720820px;}
._6c{width:179.444605px;}
._76{width:183.572362px;}
._80{width:186.973268px;}
._79{width:189.303021px;}
._4d{width:192.030631px;}
._7b{width:193.212723px;}
._33{width:194.750590px;}
._77{width:196.690139px;}
._6b{width:198.572305px;}
._7c{width:205.267000px;}
._3e{width:207.237153px;}
._58{width:211.158331px;}
._7f{width:212.340423px;}
._3a{width:213.878290px;}
._81{width:215.737503px;}
._19{width:217.439868px;}
._21{width:220.293721px;}
._69{width:221.521719px;}
._34{width:223.365630px;}
._63{width:226.728279px;}
._7d{width:228.430644px;}
._54{width:230.286031px;}
._4e{width:234.103920px;}
._7a{width:235.481115px;}
._41{width:236.831530px;}
._18{width:238.637185px;}
._72{width:242.061043px;}
._73{width:243.246961px;}
._7e{width:244.589725px;}
._60{width:245.855979px;}
._84{width:247.986805px;}
._51{width:249.413731px;}
._35{width:252.133690px;}
._2a{width:254.444316px;}
._32{width:256.269099px;}
._5c{width:258.047975px;}
._82{width:259.344833px;}
._6d{width:263.246884px;}
._3b{width:264.532265px;}
._17{width:266.123690px;}
._70{width:269.077007px;}
._8c{width:271.288169px;}
._55{width:272.359320px;}
._26{width:274.528401px;}
._28{width:277.550578px;}
._6e{width:279.444220px;}
._3f{width:282.014983px;}
._66{width:284.111379px;}
._42{width:285.304948px;}
._59{width:289.842038px;}
._8d{width:291.934608px;}
._5a{width:293.132002px;}
._4c{width:295.970553px;}
._31{width:298.690512px;}
._8e{width:312.789405px;}
._3d{width:315.105904px;}
._64{width:316.161753px;}
._57{width:322.932959px;}
._92{width:324.138004px;}
._62{width:326.903870px;}
._8f{width:328.671269px;}
._5d{width:330.668201px;}
._6f{width:333.610041px;}
._43{width:335.649054px;}
._68{width:337.167793px;}
._8a{width:338.491430px;}
._5b{width:343.476109px;}
._30{width:347.929037px;}
._3c{width:352.672707px;}
._65{width:353.992518px;}
._40{width:356.574758px;}
._2d{width:360.105731px;}
._91{width:371.031474px;}
._89{width:375.228091px;}
._74{width:378.724634px;}
._36{width:383.162261px;}
._4f{width:390.989316px;}
._38{width:392.496578px;}
._83{width:396.876822px;}
._52{width:400.323633px;}
._90{width:404.462868px;}
._67{width:411.459780px;}
._37{width:440.851404px;}
._8b{width:445.396146px;}
._50{width:448.678459px;}
._23{width:475.292741px;}
._71{width:507.404323px;}
._46{width:509.804715px;}
._48{width:543.584233px;}
._86{width:552.281733px;}
._85{width:570.671104px;}
._93{width:648.226276px;}
._47{width:736.060675px;}
._45{width:859.702128px;}
._49{width:867.965294px;}
._4b{width:885.448012px;}
._87{width:899.495395px;}
._4a{width:918.538933px;}
._44{width:951.362066px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.761800px;}
.fse{font-size:30.108600px;}
.fs14{font-size:30.126000px;}
.fs12{font-size:31.083000px;}
.fs13{font-size:33.472800px;}
.fsd{font-size:35.867400px;}
.fs9{font-size:38.255400px;}
.fs10{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.237000px;}
.fsb{font-size:43.038000px;}
.fsc{font-size:47.820600px;}
.fs11{font-size:51.168000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.697000px;}
.fsf{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.yae{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y6b{bottom:76.980015px;}
.y171{bottom:78.406386px;}
.y175{bottom:78.406522px;}
.y2f2{bottom:78.411313px;}
.y1d2{bottom:78.411511px;}
.ye9{bottom:78.416181px;}
.y1af{bottom:78.491250px;}
.y273{bottom:85.294350px;}
.yab{bottom:85.295459px;}
.y271{bottom:85.297491px;}
.y272{bottom:89.546400px;}
.y2f1{bottom:90.401512px;}
.y6a{bottom:91.320000px;}
.y170{bottom:92.777850px;}
.y174{bottom:92.777986px;}
.y1d1{bottom:94.144489px;}
.ye8{bottom:94.147962px;}
.y347{bottom:96.694525px;}
.y4{bottom:97.125005px;}
.y16f{bottom:97.540050px;}
.yaa{bottom:98.221959px;}
.y270{bottom:98.223034px;}
.y2a3{bottom:99.667494px;}
.y2c0{bottom:99.668845px;}
.y1ae{bottom:99.671605px;}
.y2f0{bottom:102.306592px;}
.y69{bottom:105.629970px;}
.y173{bottom:107.064450px;}
.y16e{bottom:107.064636px;}
.y346{bottom:108.599605px;}
.y1d0{bottom:109.791389px;}
.ye7{bottom:109.794863px;}
.ya9{bottom:111.062384px;}
.y26f{bottom:111.064415px;}
.y172{bottom:111.911700px;}
.y2a2{bottom:112.507919px;}
.y2bf{bottom:112.509270px;}
.y1ad{bottom:112.512030px;}
.y2ef{bottom:114.296791px;}
.y67{bottom:119.905636px;}
.y345{bottom:120.589804px;}
.y16d{bottom:121.436286px;}
.y26e{bottom:123.904840px;}
.y2a1{bottom:125.349300px;}
.y2be{bottom:125.350652px;}
.y1ac{bottom:125.353412px;}
.y1cf{bottom:125.523171px;}
.ye6{bottom:125.526645px;}
.y2ee{bottom:126.202828px;}
.ya8{bottom:130.791650px;}
.y344{bottom:132.580003px;}
.y66{bottom:134.192100px;}
.y16c{bottom:135.807750px;}
.y26d{bottom:136.745265px;}
.y2a0{bottom:138.189725px;}
.y2bd{bottom:138.191077px;}
.y2ed{bottom:138.193027px;}
.y1ab{bottom:138.193837px;}
.y23{bottom:139.264499px;}
.y16b{bottom:140.569950px;}
.y1ce{bottom:141.170071px;}
.ye5{bottom:141.174740px;}
.ya7{bottom:143.632075px;}
.y343{bottom:144.486040px;}
.y26c{bottom:149.586647px;}
.y2ec{bottom:150.183225px;}
.y29f{bottom:151.115269px;}
.y2bc{bottom:151.117576px;}
.y1aa{bottom:151.119380px;}
.ya6{bottom:156.472500px;}
.y342{bottom:156.476239px;}
.y1cd{bottom:156.903048px;}
.ye4{bottom:156.906522px;}
.y14a{bottom:158.261396px;}
.y62{bottom:159.703500px;}
.y2eb{bottom:162.088306px;}
.y26b{bottom:162.427072px;}
.y29e{bottom:163.956650px;}
.y2bb{bottom:163.958001px;}
.y1a9{bottom:163.960762px;}
.y61{bottom:164.466000px;}
.y341{bottom:168.381319px;}
.y1cc{bottom:172.549949px;}
.ye3{bottom:172.553423px;}
.y149{bottom:173.993178px;}
.y60{bottom:174.076108px;}
.y2ea{bottom:174.079461px;}
.y26a{bottom:175.268453px;}
.ya5{bottom:176.202036px;}
.y29b{bottom:176.797613px;}
.y2ba{bottom:176.798426px;}
.y1a8{bottom:176.801187px;}
.y340{bottom:180.372474px;}
.y29c{bottom:181.048500px;}
.y128{bottom:183.177943px;}
.y2e9{bottom:185.984541px;}
.y269{bottom:188.108878px;}
.y1cb{bottom:188.281731px;}
.ye2{bottom:188.285205px;}
.y5f{bottom:188.447572px;}
.y29d{bottom:189.637500px;}
.y29a{bottom:189.638994px;}
.y2b9{bottom:189.639808px;}
.y148{bottom:189.640078px;}
.y1a7{bottom:189.642568px;}
.ya4{bottom:190.573500px;}
.y33f{bottom:192.277555px;}
.y1a{bottom:196.933500px;}
.y2e8{bottom:197.974740px;}
.y127{bottom:198.909725px;}
.y268{bottom:201.034421px;}
.y299{bottom:202.479419px;}
.y2b8{bottom:202.480233px;}
.y1a6{bottom:202.482993px;}
.y5e{bottom:202.734036px;}
.y1ca{bottom:203.928631px;}
.ye1{bottom:203.933300px;}
.y33e{bottom:204.267753px;}
.y147{bottom:205.373055px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y2e7{bottom:209.965895px;}
.y267{bottom:213.875803px;}
.y126{bottom:214.556625px;}
.y298{bottom:215.320800px;}
.y1a5{bottom:215.323418px;}
.y33d{bottom:216.257952px;}
.y5d{bottom:217.105500px;}
.y1c9{bottom:219.661608px;}
.ye0{bottom:219.665082px;}
.y146{bottom:221.019956px;}
.y2e6{bottom:221.870976px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y2b7{bottom:222.209499px;}
.y266{bottom:226.716228px;}
.y297{bottom:228.161225px;}
.y33c{bottom:228.163989px;}
.y1a4{bottom:228.164799px;}
.y2e5{bottom:233.861174px;}
.y1d8{bottom:234.457302px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y2b6{bottom:235.049924px;}
.y1c8{bottom:235.308509px;}
.ydf{bottom:235.311983px;}
.ya3{bottom:236.332952px;}
.y145{bottom:236.751738px;}
.y265{bottom:239.557609px;}
.y33b{bottom:240.154188px;}
.y296{bottom:241.086769px;}
.y1a3{bottom:241.090343px;}
.y2e4{bottom:245.766255px;}
.y125{bottom:245.936503px;}
.y1d7{bottom:250.105398px;}
.y1c7{bottom:251.040291px;}
.yde{bottom:251.043764px;}
.ya2{bottom:251.979853px;}
.y33a{bottom:252.059268px;}
.y264{bottom:252.398034px;}
.y144{bottom:252.398638px;}
.y293{bottom:253.928687px;}
.y1a2{bottom:253.931724px;}
.y2b5{bottom:254.779190px;}
.y2e3{bottom:257.757410px;}
.y294{bottom:258.180000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y339{bottom:264.049467px;}
.y263{bottom:265.238459px;}
.y1d6{bottom:265.837180px;}
.y1c6{bottom:266.687191px;}
.ydd{bottom:266.691860px;}
.y292{bottom:266.769113px;}
.y1a1{bottom:266.772149px;}
.ya1{bottom:267.711635px;}
.y143{bottom:268.131615px;}
.y2e2{bottom:269.662491px;}
.y5c{bottom:270.681376px;}
.y53{bottom:270.682816px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y2b4{bottom:274.507500px;}
.y338{bottom:276.040622px;}
.y295{bottom:279.609000px;}
.y291{bottom:279.610494px;}
.y1a0{bottom:279.612574px;}
.y1d5{bottom:281.484080px;}
.y2e1{bottom:281.652689px;}
.y1c5{bottom:282.420168px;}
.ydc{bottom:282.423642px;}
.ya0{bottom:283.358535px;}
.y124{bottom:283.693258px;}
.y142{bottom:283.778516px;}
.y262{bottom:284.967725px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y5b{bottom:286.413158px;}
.y52{bottom:286.414598px;}
.y337{bottom:287.945703px;}
.y290{bottom:292.450919px;}
.y19f{bottom:292.453955px;}
.y2e0{bottom:293.642888px;}
.y2b3{bottom:294.236536px;}
.y1d4{bottom:297.215862px;}
.y261{bottom:297.808150px;}
.y1c4{bottom:298.067069px;}
.ydb{bottom:298.070543px;}
.y9f{bottom:299.091512px;}
.y123{bottom:299.340158px;}
.y141{bottom:299.510298px;}
.y336{bottom:299.935901px;}
.y5a{bottom:302.060059px;}
.y51{bottom:302.062694px;}
.y28f{bottom:305.292300px;}
.y19e{bottom:305.294380px;}
.y2df{bottom:305.548925px;}
.y2b2{bottom:308.523000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y260{bottom:310.649532px;}
.y335{bottom:311.841938px;}
.y1d3{bottom:312.863958px;}
.y1c3{bottom:313.798851px;}
.yda{bottom:313.802324px;}
.y9e{bottom:314.738413px;}
.y122{bottom:315.073136px;}
.y140{bottom:315.157198px;}
.y2de{bottom:317.539124px;}
.y59{bottom:317.793036px;}
.y50{bottom:317.794476px;}
.y28e{bottom:318.132725px;}
.y19d{bottom:318.135762px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y25f{bottom:323.575075px;}
.y334{bottom:323.832137px;}
.y2dd{bottom:329.444204px;}
.y1c2{bottom:329.445751px;}
.yd9{bottom:329.449225px;}
.y9d{bottom:330.470195px;}
.y121{bottom:330.804917px;}
.y13f{bottom:330.888980px;}
.y28d{bottom:330.973150px;}
.y19c{bottom:330.976187px;}
.y58{bottom:333.524818px;}
.y4f{bottom:333.526258px;}
.y333{bottom:335.737217px;}
.y25e{bottom:336.415500px;}
.y2dc{bottom:341.434403px;}
.y2b1{bottom:342.546092px;}
.y28c{bottom:343.899650px;}
.y19b{bottom:343.901730px;}
.y1c1{bottom:345.177533px;}
.yd8{bottom:345.182202px;}
.y9c{bottom:346.117095px;}
.y120{bottom:346.451818px;}
.y223{bottom:346.536000px;}
.y13e{bottom:346.537076px;}
.y332{bottom:347.727416px;}
.y11{bottom:348.133500px;}
.y57{bottom:349.171718px;}
.y4e{bottom:349.173158px;}
.y2db{bottom:353.425558px;}
.y25d{bottom:356.144536px;}
.y289{bottom:356.740613px;}
.y19a{bottom:356.743112px;}
.y2b0{bottom:358.277873px;}
.y331{bottom:359.718571px;}
.y1c0{bottom:360.825629px;}
.yd7{bottom:360.829102px;}
.y28a{bottom:360.991500px;}
.y9b{bottom:361.848877px;}
.y11f{bottom:362.183600px;}
.y13d{bottom:362.268858px;}
.y56{bottom:364.903500px;}
.y4d{bottom:364.906136px;}
.y2da{bottom:365.330638px;}
.y222{bottom:367.712572px;}
.y28b{bottom:369.580500px;}
.y288{bottom:369.581994px;}
.y199{bottom:369.583537px;}
.y55{bottom:370.176000px;}
.y25c{bottom:370.431000px;}
.y330{bottom:371.623652px;}
.y2af{bottom:373.924774px;}
.y1bf{bottom:376.557410px;}
.yd6{bottom:376.560884px;}
.y2d9{bottom:377.320837px;}
.y9a{bottom:377.496973px;}
.y11e{bottom:377.830500px;}
.y13c{bottom:377.915758px;}
.y4c{bottom:380.553036px;}
.y221{bottom:380.639071px;}
.y287{bottom:382.422419px;}
.y198{bottom:382.424918px;}
.y32f{bottom:383.613851px;}
.y10{bottom:386.785499px;}
.y2d8{bottom:389.226874px;}
.y2ae{bottom:389.656556px;}
.y1be{bottom:392.204311px;}
.yd5{bottom:392.207785px;}
.y99{bottom:393.228754px;}
.y220{bottom:393.479496px;}
.y13b{bottom:393.647540px;}
.y286{bottom:395.263800px;}
.y197{bottom:395.265343px;}
.y32e{bottom:395.518931px;}
.y4b{bottom:396.284818px;}
.y2d7{bottom:401.217073px;}
.y2ad{bottom:405.389533px;}
.y21f{bottom:406.319921px;}
.y32d{bottom:407.510086px;}
.yd4{bottom:407.940762px;}
.yf{bottom:408.044999px;}
.y285{bottom:408.104225px;}
.y196{bottom:408.105768px;}
.y98{bottom:408.875655px;}
.y11c{bottom:409.210536px;}
.y13a{bottom:409.295636px;}
.y54{bottom:411.931718px;}
.y2d6{bottom:413.122153px;}
.y11d{bottom:414.567000px;}
.y23e{bottom:415.166458px;}
.y21e{bottom:419.161303px;}
.y32c{bottom:419.500285px;}
.y284{bottom:420.944650px;}
.y195{bottom:420.947149px;}
.y2ac{bottom:421.036433px;}
.y1bd{bottom:423.584188px;}
.yd3{bottom:423.587662px;}
.y97{bottom:424.607437px;}
.y11b{bottom:424.942318px;}
.y139{bottom:425.027417px;}
.y2d5{bottom:425.112352px;}
.y4a{bottom:427.663500px;}
.y23d{bottom:430.899436px;}
.y32b{bottom:431.405365px;}
.y21d{bottom:432.001728px;}
.y194{bottom:433.787574px;}
.y281{bottom:433.788037px;}
.y2ab{bottom:436.768215px;}
.y2d4{bottom:437.103507px;}
.y282{bottom:438.037500px;}
.y96{bottom:440.255532px;}
.y11a{bottom:440.589218px;}
.y138{bottom:440.674318px;}
.y32a{bottom:443.395564px;}
.y21c{bottom:444.843109px;}
.y23c{bottom:446.546336px;}
.y193{bottom:446.713118px;}
.y280{bottom:446.713580px;}
.y2d3{bottom:449.008588px;}
.y2aa{bottom:452.415116px;}
.yd2{bottom:454.966345px;}
.y329{bottom:455.301601px;}
.y95{bottom:455.987314px;}
.y119{bottom:456.321000px;}
.y117{bottom:456.325508px;}
.y137{bottom:456.406100px;}
.y21b{bottom:457.683534px;}
.y283{bottom:459.552000px;}
.y27f{bottom:459.554961px;}
.y2d2{bottom:460.998786px;}
.y118{bottom:461.593500px;}
.y23b{bottom:462.278118px;}
.y192{bottom:466.442384px;}
.y328{bottom:467.291800px;}
.y1bc{bottom:467.719016px;}
.y2a9{bottom:468.148093px;}
.y21a{bottom:470.609077px;}
.yd1{bottom:470.699322px;}
.y94{bottom:471.634215px;}
.y116{bottom:471.973604px;}
.y134{bottom:472.052624px;}
.y136{bottom:472.053000px;}
.y27e{bottom:472.395386px;}
.y2d1{bottom:472.903867px;}
.y135{bottom:477.411000px;}
.y23a{bottom:477.925018px;}
.y327{bottom:479.281998px;}
.y191{bottom:479.282809px;}
.y1bb{bottom:483.365916px;}
.y219{bottom:483.450459px;}
.y2a8{bottom:483.794993px;}
.ye{bottom:484.864502px;}
.y2d0{bottom:484.895022px;}
.y27d{bottom:485.236768px;}
.y18c{bottom:486.346222px;}
.y49{bottom:487.108146px;}
.y93{bottom:487.365997px;}
.y115{bottom:487.705386px;}
.y133{bottom:487.784406px;}
.y326{bottom:491.188035px;}
.y190{bottom:492.124190px;}
.y239{bottom:493.657996px;}
.y2cf{bottom:496.885221px;}
.y27c{bottom:498.077193px;}
.y1ba{bottom:499.097698px;}
.y2a7{bottom:499.526775px;}
.y48{bottom:501.479610px;}
.yd0{bottom:502.078004px;}
.yd{bottom:502.864502px;}
.y92{bottom:503.014092px;}
.y325{bottom:503.178234px;}
.y218{bottom:503.178769px;}
.y114{bottom:503.352286px;}
.y132{bottom:503.431306px;}
.y2ce{bottom:508.790301px;}
.y238{bottom:509.304896px;}
.y27b{bottom:510.917618px;}
.y18f{bottom:511.852500px;}
.y1b9{bottom:514.744598px;}
.y324{bottom:515.083315px;}
.y2a6{bottom:515.173675px;}
.y47{bottom:515.851074px;}
.y217{bottom:516.020150px;}
.ycf{bottom:517.724904px;}
.y91{bottom:518.745874px;}
.y113{bottom:519.084068px;}
.y131{bottom:519.164283px;}
.y2cd{bottom:520.780500px;}
.yc{bottom:520.864502px;}
.y237{bottom:525.036678px;}
.y323{bottom:527.072557px;}
.y216{bottom:528.860575px;}
.y46{bottom:530.137538px;}
.y1b8{bottom:530.477576px;}
.y27a{bottom:530.646884px;}
.y2a5{bottom:530.906653px;}
.y18e{bottom:531.496536px;}
.yce{bottom:533.457882px;}
.y90{bottom:534.392775px;}
.y130{bottom:534.896065px;}
.yb{bottom:538.864499px;}
.y322{bottom:538.978594px;}
.y236{bottom:540.683578px;}
.y215{bottom:541.701000px;}
.y279{bottom:543.487309px;}
.y45{bottom:544.509002px;}
.y18d{bottom:545.868000px;}
.y1b7{bottom:546.124476px;}
.y2cc{bottom:548.253576px;}
.ycd{bottom:549.189664px;}
.y8f{bottom:550.124557px;}
.y112{bottom:550.463946px;}
.y12f{bottom:550.542966px;}
.y321{bottom:550.968793px;}
.y278{bottom:556.328690px;}
.y235{bottom:556.416555px;}
.ya{bottom:556.864499px;}
.y44{bottom:558.880466px;}
.y214{bottom:561.430536px;}
.y1b6{bottom:561.856258px;}
.y2a4{bottom:562.285335px;}
.y320{bottom:562.958991px;}
.ycc{bottom:564.836564px;}
.y8e{bottom:565.771457px;}
.y111{bottom:566.110846px;}
.y12e{bottom:566.275943px;}
.y234{bottom:572.063456px;}
.y43{bottom:573.251930px;}
.y31f{bottom:574.864072px;}
.y213{bottom:575.802000px;}
.y277{bottom:576.057000px;}
.y1b5{bottom:577.503158px;}
.y18b{bottom:579.888098px;}
.ycb{bottom:580.568346px;}
.y8d{bottom:581.504434px;}
.y110{bottom:581.842628px;}
.y12d{bottom:581.922843px;}
.y31e{bottom:586.855227px;}
.y42{bottom:587.538394px;}
.y233{bottom:587.795238px;}
.y1b4{bottom:593.236136px;}
.y18a{bottom:595.621075px;}
.y276{bottom:595.786572px;}
.yca{bottom:596.215246px;}
.y8c{bottom:597.151335px;}
.y12c{bottom:597.654625px;}
.y31d{bottom:598.760307px;}
.y41{bottom:601.909859px;}
.y232{bottom:603.442138px;}
.y1b3{bottom:608.883036px;}
.y275{bottom:610.158036px;}
.y31c{bottom:610.750506px;}
.y189{bottom:611.267976px;}
.yc9{bottom:611.948224px;}
.y8b{bottom:612.883116px;}
.y10f{bottom:613.222506px;}
.y12b{bottom:613.301525px;}
.y40{bottom:616.281323px;}
.y212{bottom:618.576000px;}
.y231{bottom:619.175115px;}
.y31b{bottom:622.740705px;}
.y274{bottom:624.529500px;}
.y1b2{bottom:624.614818px;}
.y188{bottom:626.999758px;}
.yc8{bottom:627.595124px;}
.y36{bottom:628.443154px;}
.y8a{bottom:628.530017px;}
.y10e{bottom:628.869406px;}
.y12a{bottom:629.033307px;}
.y3f{bottom:630.567787px;}
.y31a{bottom:634.646742px;}
.y230{bottom:634.822016px;}
.y211{bottom:639.839912px;}
.y1b1{bottom:640.261718px;}
.y35{bottom:641.283579px;}
.y187{bottom:642.646658px;}
.yc7{bottom:643.326906px;}
.y89{bottom:644.262994px;}
.y10d{bottom:644.601188px;}
.y129{bottom:644.681403px;}
.y3e{bottom:644.939251px;}
.y9{bottom:645.510000px;}
.y319{bottom:646.636940px;}
.y22f{bottom:650.553798px;}
.y210{bottom:652.680338px;}
.y34{bottom:654.124960px;}
.y1b0{bottom:655.993500px;}
.y186{bottom:658.378440px;}
.y318{bottom:658.542021px;}
.y258{bottom:658.547011px;}
.yc6{bottom:658.973806px;}
.y3d{bottom:659.310715px;}
.y88{bottom:659.909894px;}
.y10c{bottom:660.248088px;}
.y20f{bottom:665.521719px;}
.y22e{bottom:666.200698px;}
.y8{bottom:666.771000px;}
.y33{bottom:666.965385px;}
.y317{bottom:670.533176px;}
.y3c{bottom:673.597179px;}
.y185{bottom:674.026536px;}
.y2cb{bottom:674.111417px;}
.y257{bottom:674.195107px;}
.yc5{bottom:674.706784px;}
.y87{bottom:675.641676px;}
.y10b{bottom:675.981066px;}
.y20e{bottom:678.362144px;}
.y32{bottom:679.805810px;}
.y22d{bottom:681.932480px;}
.y316{bottom:682.438257px;}
.y16a{bottom:685.251915px;}
.y3b{bottom:687.968643px;}
.y1f1{bottom:689.584500px;}
.y184{bottom:689.758317px;}
.y256{bottom:689.926889px;}
.yc4{bottom:690.353684px;}
.y20d{bottom:691.202569px;}
.y86{bottom:691.288577px;}
.y10a{bottom:691.627966px;}
.y315{bottom:694.428455px;}
.y31{bottom:695.453225px;}
.y22c{bottom:697.580576px;}
.y169{bottom:698.092340px;}
.y3a{bottom:702.340108px;}
.y20c{bottom:704.043950px;}
.y183{bottom:705.405218px;}
.y2ca{bottom:705.490099px;}
.y255{bottom:705.573789px;}
.yc3{bottom:706.085466px;}
.y314{bottom:706.418654px;}
.y85{bottom:707.021554px;}
.y109{bottom:707.359748px;}
.y30{bottom:708.293650px;}
.y1f0{bottom:710.848603px;}
.y168{bottom:710.933721px;}
.y22b{bottom:713.312358px;}
.y39{bottom:716.711572px;}
.y20b{bottom:716.884375px;}
.y313{bottom:718.324691px;}
.y2f{bottom:721.135032px;}
.y182{bottom:721.137000px;}
.y254{bottom:721.305571px;}
.yc2{bottom:721.732366px;}
.y84{bottom:722.753336px;}
.y1ef{bottom:723.689028px;}
.y167{bottom:723.774146px;}
.y7{bottom:726.298500px;}
.y22a{bottom:728.959258px;}
.y20a{bottom:729.809919px;}
.y312{bottom:730.314890px;}
.y38{bottom:730.998036px;}
.y2e{bottom:733.975457px;}
.y1ee{bottom:736.530409px;}
.y166{bottom:736.615528px;}
.y181{bottom:736.869977px;}
.y253{bottom:736.952471px;}
.yc1{bottom:737.465344px;}
.y2c9{bottom:737.889751px;}
.y83{bottom:738.400236px;}
.y108{bottom:738.739626px;}
.y311{bottom:742.219970px;}
.y209{bottom:742.651300px;}
.y229{bottom:744.691040px;}
.y37{bottom:745.369500px;}
.y2d{bottom:746.901000px;}
.y1ed{bottom:749.370834px;}
.y165{bottom:749.455953px;}
.y180{bottom:752.516877px;}
.y3{bottom:752.599495px;}
.y252{bottom:752.685449px;}
.yc0{bottom:753.112244px;}
.y2c8{bottom:753.622729px;}
.y82{bottom:754.132018px;}
.y310{bottom:754.210169px;}
.y208{bottom:755.491725px;}
.y228{bottom:760.339136px;}
.y164{bottom:762.296378px;}
.y30f{bottom:766.201324px;}
.y17f{bottom:768.248659px;}
.y251{bottom:768.332349px;}
.y207{bottom:768.333106px;}
.ybf{bottom:768.844026px;}
.y81{bottom:769.780114px;}
.y2c{bottom:774.624000px;}
.y1ec{bottom:775.137759px;}
.y163{bottom:775.222877px;}
.y227{bottom:776.070917px;}
.y107{bottom:776.496380px;}
.y30e{bottom:778.106404px;}
.y206{bottom:781.173531px;}
.y17e{bottom:783.895560px;}
.ybe{bottom:784.490926px;}
.y2c7{bottom:785.001411px;}
.y80{bottom:785.511896px;}
.y1eb{bottom:787.978184px;}
.y162{bottom:788.063302px;}
.y30d{bottom:790.096603px;}
.y226{bottom:791.717818px;}
.y106{bottom:792.143281px;}
.y205{bottom:794.013956px;}
.y17d{bottom:799.628537px;}
.y250{bottom:799.711031px;}
.ybd{bottom:800.223903px;}
.y1ea{bottom:800.819566px;}
.y161{bottom:800.903727px;}
.y7f{bottom:801.158796px;}
.y30c{bottom:802.002640px;}
.y204{bottom:806.855338px;}
.y225{bottom:807.449600px;}
.y105{bottom:807.875062px;}
.y1e9{bottom:813.659991px;}
.y160{bottom:813.745109px;}
.y30b{bottom:813.992839px;}
.y17c{bottom:815.275437px;}
.y24f{bottom:815.444008px;}
.ybc{bottom:815.870804px;}
.y2c6{bottom:816.635933px;}
.y7e{bottom:816.890578px;}
.y203{bottom:819.695763px;}
.y224{bottom:823.096500px;}
.y104{bottom:823.523158px;}
.y2b{bottom:824.116500px;}
.y30a{bottom:825.897919px;}
.y1e8{bottom:826.500416px;}
.y15f{bottom:826.585534px;}
.y2a{bottom:828.369000px;}
.y17b{bottom:831.007219px;}
.y24e{bottom:831.089713px;}
.ybb{bottom:831.602586px;}
.y2c5{bottom:832.282834px;}
.y7d{bottom:832.537478px;}
.y202{bottom:832.622262px;}
.y29{bottom:836.958000px;}
.y309{bottom:837.888118px;}
.y103{bottom:839.254940px;}
.y1e7{bottom:839.341797px;}
.y15e{bottom:839.426915px;}
.y28{bottom:841.209000px;}
.y201{bottom:845.462687px;}
.y17a{bottom:846.654120px;}
.y24d{bottom:846.821495px;}
.yba{bottom:847.249486px;}
.y2c4{bottom:848.014616px;}
.y7c{bottom:848.270456px;}
.y308{bottom:849.879273px;}
.y35e{bottom:849.886109px;}
.y1e6{bottom:852.182222px;}
.y15d{bottom:852.267340px;}
.y102{bottom:854.901840px;}
.y25b{bottom:856.771500px;}
.y200{bottom:858.303113px;}
.y26{bottom:861.619500px;}
.y307{bottom:861.784354px;}
.y35d{bottom:861.791189px;}
.y179{bottom:862.387097px;}
.y24c{bottom:862.468395px;}
.yb9{bottom:862.981268px;}
.y2c3{bottom:863.662711px;}
.y7b{bottom:863.917356px;}
.y15c{bottom:865.107765px;}
.y27{bottom:868.677000px;}
.y101{bottom:870.292500px;}
.y1ff{bottom:871.144494px;}
.y100{bottom:872.079000px;}
.yff{bottom:872.079840px;}
.y306{bottom:873.774552px;}
.y35c{bottom:873.781388px;}
.y1e5{bottom:877.949147px;}
.y178{bottom:878.033997px;}
.y15b{bottom:878.034265px;}
.y24b{bottom:878.201373px;}
.yb8{bottom:878.629364px;}
.y2{bottom:879.369000px;}
.y2c2{bottom:879.394493px;}
.y7a{bottom:879.649138px;}
.y1fe{bottom:883.984919px;}
.y305{bottom:885.679633px;}
.y35b{bottom:885.687425px;}
.yfe{bottom:887.386500px;}
.yfc{bottom:889.256818px;}
.yfd{bottom:889.257000px;}
.y1e4{bottom:890.789572px;}
.y15a{bottom:890.874690px;}
.y24a{bottom:893.848273px;}
.yb7{bottom:894.361146px;}
.y79{bottom:895.296038px;}
.y1fd{bottom:896.826300px;}
.y304{bottom:897.670788px;}
.y35a{bottom:897.677624px;}
.y25{bottom:899.122216px;}
.y1e3{bottom:903.630953px;}
.y159{bottom:903.716071px;}
.yfb{bottom:904.903718px;}
.y177{bottom:909.412679px;}
.y249{bottom:909.580055px;}
.y303{bottom:909.660987px;}
.y1fc{bottom:909.666725px;}
.y359{bottom:909.667822px;}
.yb6{bottom:910.008046px;}
.y2c1{bottom:910.773176px;}
.y78{bottom:911.029016px;}
.y1e2{bottom:916.471378px;}
.y158{bottom:916.556496px;}
.yfa{bottom:918.765000px;}
.yf9{bottom:920.635500px;}
.yf8{bottom:920.636884px;}
.y302{bottom:921.566067px;}
.y358{bottom:921.572903px;}
.y1fb{bottom:922.592269px;}
.y24{bottom:924.973500px;}
.y248{bottom:925.226955px;}
.yb5{bottom:925.739828px;}
.y77{bottom:926.675916px;}
.y1e1{bottom:929.311803px;}
.y157{bottom:929.396921px;}
.y301{bottom:933.556266px;}
.y357{bottom:933.564058px;}
.y1fa{bottom:935.433650px;}
.yf7{bottom:936.284979px;}
.y176{bottom:940.792557px;}
.y247{bottom:940.959933px;}
.yb4{bottom:941.387924px;}
.y1e0{bottom:942.153184px;}
.y156{bottom:942.238303px;}
.y76{bottom:942.407698px;}
.y300{bottom:945.462303px;}
.y356{bottom:945.469138px;}
.y1f7{bottom:948.275961px;}
.yf6{bottom:952.016761px;}
.y1f8{bottom:952.525500px;}
.y1df{bottom:954.993609px;}
.y155{bottom:955.078728px;}
.y246{bottom:956.606833px;}
.yb3{bottom:957.119706px;}
.y2ff{bottom:957.452502px;}
.y355{bottom:957.459337px;}
.y75{bottom:958.054598px;}
.y1f9{bottom:961.114500px;}
.y1f6{bottom:961.116386px;}
.y1{bottom:966.726000px;}
.yf5{bottom:967.663662px;}
.y154{bottom:967.920109px;}
.y2fe{bottom:969.357582px;}
.y354{bottom:969.365374px;}
.y245{bottom:972.338615px;}
.yb2{bottom:972.766606px;}
.y74{bottom:973.787576px;}
.y1f5{bottom:973.957768px;}
.y1de{bottom:980.760534px;}
.y153{bottom:980.845652px;}
.y2fd{bottom:981.348737px;}
.y353{bottom:981.355573px;}
.yf4{bottom:983.395443px;}
.y1f4{bottom:986.798193px;}
.y244{bottom:988.070397px;}
.yb1{bottom:988.498388px;}
.y73{bottom:989.434476px;}
.y2fc{bottom:993.338936px;}
.y352{bottom:993.345772px;}
.y1dd{bottom:993.600959px;}
.y152{bottom:993.686077px;}
.y1f3{bottom:999.638618px;}
.y65{bottom:1003.719000px;}
.yb0{bottom:1004.146484px;}
.y72{bottom:1005.166258px;}
.y2fb{bottom:1005.244016px;}
.y351{bottom:1005.250852px;}
.y1dc{bottom:1006.442341px;}
.y151{bottom:1006.527459px;}
.yf3{bottom:1010.863500px;}
.yf2{bottom:1012.648500px;}
.yf1{bottom:1012.649684px;}
.y2fa{bottom:1017.234215px;}
.y350{bottom:1017.242007px;}
.y1db{bottom:1019.282766px;}
.y150{bottom:1019.367884px;}
.y243{bottom:1019.450275px;}
.y71{bottom:1020.813158px;}
.y2f9{bottom:1029.140252px;}
.y34f{bottom:1029.147088px;}
.y1da{bottom:1032.124147px;}
.y14f{bottom:1032.208309px;}
.yaf{bottom:1035.525166px;}
.y70{bottom:1036.546136px;}
.y25a{bottom:1039.097150px;}
.y2f8{bottom:1041.130451px;}
.y34e{bottom:1041.137286px;}
.yf0{bottom:1041.646500px;}
.yef{bottom:1043.433000px;}
.yee{bottom:1043.434803px;}
.y14e{bottom:1045.049690px;}
.y1f2{bottom:1045.134808px;}
.y64{bottom:1045.474500px;}
.y1d9{bottom:1051.852457px;}
.y259{bottom:1051.937575px;}
.y242{bottom:1052.189453px;}
.y6f{bottom:1052.193036px;}
.y2f7{bottom:1053.120650px;}
.y34d{bottom:1053.127485px;}
.y14d{bottom:1064.778000px;}
.y2f6{bottom:1065.025730px;}
.y34c{bottom:1065.033522px;}
.y241{bottom:1067.922430px;}
.y6e{bottom:1067.924818px;}
.yed{bottom:1072.431000px;}
.yeb{bottom:1074.302890px;}
.yec{bottom:1074.303000px;}
.y2f5{bottom:1077.016885px;}
.y34b{bottom:1077.023721px;}
.y240{bottom:1083.569331px;}
.y6d{bottom:1083.571718px;}
.y14c{bottom:1084.507536px;}
.y63{bottom:1087.312500px;}
.y2f4{bottom:1088.921966px;}
.y34a{bottom:1088.928801px;}
.y14b{bottom:1098.879000px;}
.y23f{bottom:1099.301113px;}
.y6c{bottom:1099.303500px;}
.y2f3{bottom:1100.912164px;}
.y349{bottom:1100.919000px;}
.y68{bottom:1127.504970px;}
.yac{bottom:1128.628289px;}
.yad{bottom:1128.629970px;}
.y348{bottom:1128.634896px;}
.y35f{bottom:1128.640776px;}
.yea{bottom:1128.642000px;}
.hd{height:23.521113px;}
.h13{height:26.462637px;}
.h12{height:31.524082px;}
.h7{height:32.130000px;}
.h21{height:32.422367px;}
.h20{height:33.305124px;}
.he{height:33.622910px;}
.h16{height:33.623438px;}
.h17{height:34.691904px;}
.h15{height:35.100320px;}
.h18{height:35.367410px;}
.hf{height:36.775371px;}
.hc{height:37.122363px;}
.h10{height:37.826367px;}
.h22{height:39.568367px;}
.h11{height:42.029824px;}
.h6{height:45.900000px;}
.h1b{height:47.039832px;}
.h1d{height:47.042306px;}
.h3{height:48.195000px;}
.h1e{height:49.169824px;}
.h1c{height:49.175824px;}
.h1f{height:49.511824px;}
.h19{height:49.517824px;}
.h1a{height:54.535043px;}
.h2{height:55.080000px;}
.hb{height:55.689609px;}
.ha{height:70.925098px;}
.h14{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:56.381100px;}
.x59{left:61.483350px;}
.xb{left:62.758950px;}
.x13{left:63.948751px;}
.x14{left:65.565300px;}
.x51{left:71.603100px;}
.xd{left:74.323389px;}
.x15{left:75.514950px;}
.x5b{left:80.956305px;}
.x37{left:83.253450px;}
.x38{left:89.801550px;}
.x24{left:92.522700px;}
.x25{left:99.070800px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x26{left:120.075450px;}
.x27{left:126.623550px;}
.x6{left:132.236100px;}
.x7{left:138.699150px;}
.x39{left:139.804650px;}
.x1e{left:142.695018px;}
.x28{left:157.747500px;}
.x4f{left:161.487983px;}
.x29{left:164.296500px;}
.x43{left:191.761394px;}
.x5c{left:197.203945px;}
.x2a{left:200.523000px;}
.x4{left:203.484001px;}
.x2b{left:207.156000px;}
.x8{left:212.512500px;}
.x5a{left:217.953674px;}
.x9{left:219.061500px;}
.x1a{left:221.185535px;}
.x50{left:222.375278px;}
.x30{left:223.993500px;}
.x2e{left:225.013500px;}
.x2f{left:230.286000px;}
.x2c{left:234.453000px;}
.x2d{left:239.725500px;}
.x18{left:247.804500px;}
.x44{left:275.184944px;}
.x4d{left:283.433765px;}
.xa{left:296.022000px;}
.x1f{left:298.485352px;}
.xc{left:302.995500px;}
.x16{left:342.624000px;}
.x46{left:351.208651px;}
.x17{left:357.250500px;}
.x45{left:362.434035px;}
.x4e{left:366.856359px;}
.x31{left:368.050500px;}
.x32{left:373.408500px;}
.x1b{left:377.060987px;}
.x3a{left:387.013500px;}
.x3b{left:396.369000px;}
.x33{left:403.257000px;}
.x34{left:408.529500px;}
.x35{left:417.714000px;}
.x36{left:424.347000px;}
.x5e{left:441.629970px;}
.x23{left:444.315030px;}
.x3{left:454.959000px;}
.xe{left:459.888932px;}
.x3e{left:468.907500px;}
.x19{left:477.831221px;}
.x42{left:479.026500px;}
.x5d{left:484.719099px;}
.x55{left:507.004500px;}
.x49{left:518.569500px;}
.x1c{left:532.851322px;}
.x56{left:552.925500px;}
.xf{left:554.967000px;}
.x3f{left:559.558452px;}
.x4c{left:568.997016px;}
.x58{left:582.094500px;}
.x10{left:584.646000px;}
.x40{left:592.723015px;}
.x47{left:597.230457px;}
.x57{left:602.079000px;}
.x20{left:610.151140px;}
.x52{left:623.166662px;}
.x4a{left:640.174057px;}
.x48{left:679.972106px;}
.x22{left:685.185015px;}
.x1d{left:688.726775px;}
.x53{left:697.490210px;}
.x4b{left:735.417570px;}
.x11{left:750.727500px;}
.x12{left:758.976000px;}
.x41{left:762.119839px;}
.x21{left:766.026592px;}
.x54{left:775.641210px;}
.x3c{left:788.400000px;}
.x3d{left:798.774000px;}
@media print{
.v3{vertical-align:-9.985076pt;}
.v5{vertical-align:-3.930667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.115099pt;}
.v1{vertical-align:6.656000pt;}
.v6{vertical-align:10.282667pt;}
.v7{vertical-align:13.908139pt;}
.v4{vertical-align:17.536000pt;}
.v2{vertical-align:24.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000005pt;}
.ls7{letter-spacing:0.000011pt;}
.ls4{letter-spacing:0.000112pt;}
.ls10{letter-spacing:0.249902pt;}
.ls2f{letter-spacing:0.260882pt;}
.ls2b{letter-spacing:0.262482pt;}
.ls13{letter-spacing:0.262888pt;}
.ls26{letter-spacing:0.547956pt;}
.ls23{letter-spacing:0.562484pt;}
.ls15{letter-spacing:0.565320pt;}
.ls17{letter-spacing:0.565821pt;}
.ls1f{letter-spacing:1.022045pt;}
.ls1a{letter-spacing:1.307088pt;}
.ls1d{letter-spacing:1.318544pt;}
.ls2d{letter-spacing:1.318574pt;}
.ls28{letter-spacing:1.318715pt;}
.ls1c{letter-spacing:1.319579pt;}
.ls30{letter-spacing:1.321906pt;}
.ls24{letter-spacing:1.324893pt;}
.ls2{letter-spacing:1.437935pt;}
.ls1{letter-spacing:1.580602pt;}
.ls27{letter-spacing:2.428051pt;}
.ls20{letter-spacing:2.583352pt;}
.ls9{letter-spacing:2.586552pt;}
.lsc{letter-spacing:2.588685pt;}
.ls25{letter-spacing:2.598057pt;}
.ls29{letter-spacing:2.599657pt;}
.ls2e{letter-spacing:2.600190pt;}
.ls22{letter-spacing:2.603390pt;}
.ls31{letter-spacing:2.632000pt;}
.ls6{letter-spacing:2.716272pt;}
.lsa{letter-spacing:2.887352pt;}
.ls2c{letter-spacing:6.966930pt;}
.ls2a{letter-spacing:7.268731pt;}
.ls12{letter-spacing:9.296325pt;}
.ls14{letter-spacing:9.300575pt;}
.ls1e{letter-spacing:9.598126pt;}
.ls18{letter-spacing:9.674639pt;}
.lsd{letter-spacing:9.980691pt;}
.ls38{letter-spacing:10.757587pt;}
.ls37{letter-spacing:11.059810pt;}
.ls36{letter-spacing:11.358206pt;}
.ls35{letter-spacing:11.362032pt;}
.ls34{letter-spacing:11.664254pt;}
.lsf{letter-spacing:11.714984pt;}
.ls16{letter-spacing:11.959352pt;}
.ls1b{letter-spacing:11.959885pt;}
.ls11{letter-spacing:12.261752pt;}
.lsb{letter-spacing:12.263352pt;}
.ls8{letter-spacing:14.378552pt;}
.ls3{letter-spacing:16.922845pt;}
.ls39{letter-spacing:17.498870pt;}
.ls3a{letter-spacing:17.502271pt;}
.ls33{letter-spacing:17.801513pt;}
.ls32{letter-spacing:17.804913pt;}
.lse{letter-spacing:615.778019pt;}
.ls19{letter-spacing:649.340685pt;}
.ls21{letter-spacing:652.663352pt;}
.ws24{word-spacing:-42.507200pt;}
.ws18{word-spacing:-38.256000pt;}
.wsb{word-spacing:-34.005333pt;}
.ws16{word-spacing:-34.004800pt;}
.ws6f{word-spacing:-26.455734pt;}
.ws8{word-spacing:-21.538128pt;}
.ws70{word-spacing:-19.145003pt;}
.wsa{word-spacing:-18.906965pt;}
.ws4{word-spacing:-12.454610pt;}
.ws7{word-spacing:-11.944523pt;}
.ws17{word-spacing:-11.209008pt;}
.ws1{word-spacing:-11.000392pt;}
.ws5{word-spacing:-10.626800pt;}
.ws15{word-spacing:-9.963406pt;}
.ws11{word-spacing:-8.717805pt;}
.ws2{word-spacing:-8.501200pt;}
.wse{word-spacing:-3.030763pt;}
.wsd{word-spacing:-0.667363pt;}
.ws10{word-spacing:-0.484582pt;}
.wsf{word-spacing:-0.463328pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:1.583798pt;}
.ws12{word-spacing:3.047766pt;}
.ws6d{word-spacing:11.262390pt;}
.ws6e{word-spacing:11.265790pt;}
.ws6c{word-spacing:11.361004pt;}
.wsc{word-spacing:14.133644pt;}
.ws3{word-spacing:14.384436pt;}
.ws14{word-spacing:50.276097pt;}
.ws13{word-spacing:53.336529pt;}
.ws4a{word-spacing:69.417399pt;}
.ws47{word-spacing:87.558960pt;}
.ws55{word-spacing:91.190672pt;}
.ws3b{word-spacing:96.699450pt;}
.ws57{word-spacing:108.193072pt;}
.ws4b{word-spacing:113.997692pt;}
.ws59{word-spacing:123.053170pt;}
.ws5a{word-spacing:123.481630pt;}
.ws41{word-spacing:126.637276pt;}
.ws39{word-spacing:130.704250pt;}
.ws38{word-spacing:131.438753pt;}
.ws4f{word-spacing:134.193142pt;}
.ws4c{word-spacing:136.002198pt;}
.ws2d{word-spacing:137.821454pt;}
.ws48{word-spacing:139.300663pt;}
.ws21{word-spacing:140.242596pt;}
.ws2f{word-spacing:141.585786pt;}
.ws51{word-spacing:142.197872pt;}
.ws50{word-spacing:142.626333pt;}
.ws56{word-spacing:144.340175pt;}
.ws31{word-spacing:147.121767pt;}
.ws3f{word-spacing:149.542909pt;}
.ws3c{word-spacing:150.212804pt;}
.ws52{word-spacing:155.803193pt;}
.ws54{word-spacing:156.231653pt;}
.ws3d{word-spacing:157.010363pt;}
.ws1a{word-spacing:157.244996pt;}
.ws43{word-spacing:160.642076pt;}
.ws40{word-spacing:161.373179pt;}
.ws49{word-spacing:161.781236pt;}
.ws46{word-spacing:161.808440pt;}
.ws20{word-spacing:163.148229pt;}
.ws53{word-spacing:164.800863pt;}
.ws4d{word-spacing:164.868872pt;}
.ws1e{word-spacing:166.548709pt;}
.ws5c{word-spacing:168.197942pt;}
.ws34{word-spacing:171.826254pt;}
.ws2e{word-spacing:172.557358pt;}
.ws30{word-spacing:173.448283pt;}
.ws1f{word-spacing:174.247396pt;}
.ws1b{word-spacing:174.981900pt;}
.ws33{word-spacing:185.431575pt;}
.ws45{word-spacing:186.944788pt;}
.ws1d{word-spacing:187.852717pt;}
.ws65{word-spacing:191.572842pt;}
.ws5b{word-spacing:196.863989pt;}
.ws22{word-spacing:197.153029pt;}
.ws32{word-spacing:198.128967pt;}
.ws37{word-spacing:198.394205pt;}
.ws1c{word-spacing:200.553509pt;}
.ws9{word-spacing:207.446282pt;}
.ws4e{word-spacing:209.581784pt;}
.ws3a{word-spacing:213.563746pt;}
.ws44{word-spacing:215.610835pt;}
.ws62{word-spacing:223.227910pt;}
.ws68{word-spacing:223.431939pt;}
.ws69{word-spacing:223.435339pt;}
.ws5e{word-spacing:225.574241pt;}
.ws36{word-spacing:226.795014pt;}
.ws3e{word-spacing:228.328630pt;}
.ws23{word-spacing:229.219556pt;}
.ws2c{word-spacing:239.512809pt;}
.ws19{word-spacing:241.937351pt;}
.ws66{word-spacing:242.576641pt;}
.ws5f{word-spacing:242.580042pt;}
.ws61{word-spacing:255.882720pt;}
.ws64{word-spacing:256.181962pt;}
.ws60{word-spacing:261.721344pt;}
.ws63{word-spacing:261.724744pt;}
.ws6b{word-spacing:268.882755pt;}
.ws6a{word-spacing:297.548801pt;}
.ws5d{word-spacing:310.266596pt;}
.ws35{word-spacing:313.949316pt;}
.ws42{word-spacing:349.929795pt;}
.ws58{word-spacing:406.166933pt;}
.ws67{word-spacing:475.104864pt;}
.ws2a{word-spacing:780.025906pt;}
.ws2b{word-spacing:824.776223pt;}
.ws28{word-spacing:839.908359pt;}
.ws29{word-spacing:843.376848pt;}
.ws25{word-spacing:867.010184pt;}
.ws27{word-spacing:875.307355pt;}
.ws26{word-spacing:918.289423pt;}
._3{margin-left:-15.416526pt;}
._11{margin-left:-11.222341pt;}
._10{margin-left:-10.332510pt;}
._14{margin-left:-4.799063pt;}
._9{margin-left:-3.672622pt;}
._5{margin-left:-2.586106pt;}
._4{margin-left:-1.660310pt;}
._2{width:1.100175pt;}
._1{width:2.037151pt;}
._0{width:3.012688pt;}
._7{width:4.755221pt;}
._a{width:5.695719pt;}
._d{width:6.962679pt;}
._b{width:8.293155pt;}
._8{width:9.200568pt;}
._6{width:10.103410pt;}
._f{width:11.328169pt;}
._2e{width:12.314039pt;}
._e{width:13.453529pt;}
._12{width:14.418442pt;}
._13{width:15.578889pt;}
._15{width:16.943370pt;}
._c{width:18.507635pt;}
._1b{width:19.629825pt;}
._20{width:21.100574pt;}
._1f{width:22.554320pt;}
._1d{width:24.105833pt;}
._1c{width:25.143009pt;}
._1a{width:26.839046pt;}
._1e{width:30.545674pt;}
._2f{width:33.631697pt;}
._94{width:43.854678pt;}
._25{width:60.484338pt;}
._27{width:62.211782pt;}
._2c{width:69.760847pt;}
._2b{width:78.613877pt;}
._78{width:83.770825pt;}
._88{width:85.698897pt;}
._22{width:93.400984pt;}
._61{width:97.981431pt;}
._24{width:100.807230pt;}
._6a{width:105.775331pt;}
._5f{width:115.966569pt;}
._39{width:117.891241pt;}
._53{width:124.848623pt;}
._5e{width:134.366567pt;}
._75{width:137.739843pt;}
._16{width:142.531119pt;}
._29{width:143.507057pt;}
._56{width:157.085174pt;}
._6c{width:159.506315pt;}
._76{width:163.175433pt;}
._80{width:166.198460pt;}
._79{width:168.269352pt;}
._4d{width:170.693895pt;}
._7b{width:171.744643pt;}
._33{width:173.111636pt;}
._77{width:174.835679pt;}
._6b{width:176.508715pt;}
._7c{width:182.459555pt;}
._3e{width:184.210803pt;}
._58{width:187.696295pt;}
._7f{width:188.747043pt;}
._3a{width:190.114036pt;}
._81{width:191.766669pt;}
._19{width:193.279883pt;}
._21{width:195.816641pt;}
._69{width:196.908195pt;}
._34{width:198.547226pt;}
._63{width:201.536248pt;}
._7d{width:203.049462pt;}
._54{width:204.698695pt;}
._4e{width:208.092374pt;}
._7a{width:209.316546pt;}
._41{width:210.516916pt;}
._18{width:212.121942pt;}
._72{width:215.165372pt;}
._73{width:216.219521pt;}
._7e{width:217.413089pt;}
._60{width:218.538648pt;}
._84{width:220.432716pt;}
._51{width:221.701095pt;}
._35{width:224.118836pt;}
._2a{width:226.172726pt;}
._32{width:227.794755pt;}
._5c{width:229.375978pt;}
._82{width:230.528741pt;}
._6d{width:233.997230pt;}
._3b{width:235.139792pt;}
._17{width:236.554391pt;}
._70{width:239.179562pt;}
._8c{width:241.145039pt;}
._55{width:242.097174pt;}
._26{width:244.025246pt;}
._28{width:246.711625pt;}
._6e{width:248.394863pt;}
._3f{width:250.679985pt;}
._66{width:252.543448pt;}
._42{width:253.604398pt;}
._59{width:257.637367pt;}
._8d{width:259.497430pt;}
._5a{width:260.561780pt;}
._4c{width:263.084936pt;}
._31{width:265.502677pt;}
._8e{width:278.035027pt;}
._3d{width:280.094137pt;}
._64{width:281.032670pt;}
._57{width:287.051519pt;}
._92{width:288.122670pt;}
._62{width:290.581217pt;}
._8f{width:292.152239pt;}
._5d{width:293.927290pt;}
._6f{width:296.542259pt;}
._43{width:298.354715pt;}
._68{width:299.704705pt;}
._8a{width:300.881271pt;}
._5b{width:305.312097pt;}
._30{width:309.270256pt;}
._3c{width:313.486851pt;}
._65{width:314.660016pt;}
._40{width:316.955340pt;}
._2d{width:320.093983pt;}
._91{width:329.805754pt;}
._89{width:333.536081pt;}
._74{width:336.644120pt;}
._36{width:340.588676pt;}
._4f{width:347.546058pt;}
._38{width:348.885848pt;}
._83{width:352.779397pt;}
._52{width:355.843230pt;}
._90{width:359.522549pt;}
._67{width:365.742027pt;}
._37{width:391.867915pt;}
._8b{width:395.907685pt;}
._50{width:398.825297pt;}
._23{width:422.482436pt;}
._71{width:451.026065pt;}
._46{width:453.159747pt;}
._48{width:483.185985pt;}
._86{width:490.917096pt;}
._85{width:507.263204pt;}
._93{width:576.201135pt;}
._47{width:654.276155pt;}
._45{width:764.179669pt;}
._49{width:771.524706pt;}
._4b{width:787.064899pt;}
._87{width:799.551462pt;}
._4a{width:816.479051pt;}
._44{width:845.655170pt;}
.fs8{font-size:23.788267pt;}
.fse{font-size:26.763200pt;}
.fs14{font-size:26.778667pt;}
.fs12{font-size:27.629333pt;}
.fs13{font-size:29.753600pt;}
.fsd{font-size:31.882133pt;}
.fs9{font-size:34.004800pt;}
.fs10{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.544000pt;}
.fsb{font-size:38.256000pt;}
.fsc{font-size:42.507200pt;}
.fs11{font-size:45.482667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.730667pt;}
.fsf{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.yae{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y6b{bottom:68.426680pt;}
.y171{bottom:69.694565pt;}
.y175{bottom:69.694686pt;}
.y2f2{bottom:69.698945pt;}
.y1d2{bottom:69.699121pt;}
.ye9{bottom:69.703272pt;}
.y1af{bottom:69.770000pt;}
.y273{bottom:75.817200pt;}
.yab{bottom:75.818186pt;}
.y271{bottom:75.819992pt;}
.y272{bottom:79.596800pt;}
.y2f1{bottom:80.356899pt;}
.y6a{bottom:81.173333pt;}
.y170{bottom:82.469200pt;}
.y174{bottom:82.469321pt;}
.y1d1{bottom:83.683990pt;}
.ye8{bottom:83.687078pt;}
.y347{bottom:85.950689pt;}
.y4{bottom:86.333337pt;}
.y16f{bottom:86.702267pt;}
.yaa{bottom:87.308408pt;}
.y270{bottom:87.309363pt;}
.y2a3{bottom:88.593328pt;}
.y2c0{bottom:88.594529pt;}
.y1ae{bottom:88.596983pt;}
.y2f0{bottom:90.939193pt;}
.y69{bottom:93.893307pt;}
.y173{bottom:95.168400pt;}
.y16e{bottom:95.168565pt;}
.y346{bottom:96.532983pt;}
.y1d0{bottom:97.592346pt;}
.ye7{bottom:97.595434pt;}
.ya9{bottom:98.722119pt;}
.y26f{bottom:98.723925pt;}
.y172{bottom:99.477067pt;}
.y2a2{bottom:100.007039pt;}
.y2bf{bottom:100.008240pt;}
.y1ad{bottom:100.010694pt;}
.y2ef{bottom:101.597147pt;}
.y67{bottom:106.582787pt;}
.y345{bottom:107.190937pt;}
.y16d{bottom:107.943365pt;}
.y26e{bottom:110.137636pt;}
.y2a1{bottom:111.421600pt;}
.y2be{bottom:111.422802pt;}
.y1ac{bottom:111.425255pt;}
.y1cf{bottom:111.576152pt;}
.ye6{bottom:111.579240pt;}
.y2ee{bottom:112.180291pt;}
.ya8{bottom:116.259244pt;}
.y344{bottom:117.848892pt;}
.y66{bottom:119.281867pt;}
.y16c{bottom:120.718000pt;}
.y26d{bottom:121.551347pt;}
.y2a0{bottom:122.835311pt;}
.y2bd{bottom:122.836513pt;}
.y2ed{bottom:122.838246pt;}
.y1ab{bottom:122.838966pt;}
.y23{bottom:123.790666pt;}
.y16b{bottom:124.951067pt;}
.y1ce{bottom:125.484508pt;}
.ye5{bottom:125.488658pt;}
.ya7{bottom:127.672956pt;}
.y343{bottom:128.432035pt;}
.y26c{bottom:132.965908pt;}
.y2ec{bottom:133.496200pt;}
.y29f{bottom:134.324683pt;}
.y2bc{bottom:134.326735pt;}
.y1aa{bottom:134.328338pt;}
.ya6{bottom:139.086667pt;}
.y342{bottom:139.089990pt;}
.y1cd{bottom:139.469376pt;}
.ye4{bottom:139.472464pt;}
.y14a{bottom:140.676796pt;}
.y62{bottom:141.958667pt;}
.y2eb{bottom:144.078494pt;}
.y26b{bottom:144.379619pt;}
.y29e{bottom:145.739244pt;}
.y2bb{bottom:145.740446pt;}
.y1a9{bottom:145.742899pt;}
.y61{bottom:146.192000pt;}
.y341{bottom:149.672284pt;}
.y1cc{bottom:153.377732pt;}
.ye3{bottom:153.380820pt;}
.y149{bottom:154.660602pt;}
.y60{bottom:154.734318pt;}
.y2ea{bottom:154.737299pt;}
.y26a{bottom:155.794180pt;}
.ya5{bottom:156.624032pt;}
.y29b{bottom:157.153433pt;}
.y2ba{bottom:157.154157pt;}
.y1a8{bottom:157.156610pt;}
.y340{bottom:160.331088pt;}
.y29c{bottom:160.932000pt;}
.y128{bottom:162.824838pt;}
.y2e9{bottom:165.319592pt;}
.y269{bottom:167.207892pt;}
.y1cb{bottom:167.361538pt;}
.ye2{bottom:167.364626pt;}
.y5f{bottom:167.508953pt;}
.y29d{bottom:168.566667pt;}
.y29a{bottom:168.567995pt;}
.y2b9{bottom:168.568718pt;}
.y148{bottom:168.568958pt;}
.y1a7{bottom:168.571172pt;}
.ya4{bottom:169.398667pt;}
.y33f{bottom:170.913382pt;}
.y1a{bottom:175.052000pt;}
.y2e8{bottom:175.977547pt;}
.y127{bottom:176.808645pt;}
.y268{bottom:178.697263pt;}
.y299{bottom:179.981706pt;}
.y2b8{bottom:179.982429pt;}
.y1a6{bottom:179.984883pt;}
.y5e{bottom:180.208032pt;}
.y1ca{bottom:181.269894pt;}
.ye1{bottom:181.274045pt;}
.y33e{bottom:181.571336pt;}
.y147{bottom:182.553827pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y2e7{bottom:186.636351pt;}
.y267{bottom:190.111825pt;}
.y126{bottom:190.717000pt;}
.y298{bottom:191.396267pt;}
.y1a5{bottom:191.398594pt;}
.y33d{bottom:192.229291pt;}
.y5d{bottom:192.982667pt;}
.y1c9{bottom:195.254763pt;}
.ye0{bottom:195.257851pt;}
.y146{bottom:196.462183pt;}
.y2e6{bottom:197.218645pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y2b7{bottom:197.519555pt;}
.y266{bottom:201.525536pt;}
.y297{bottom:202.809978pt;}
.y33c{bottom:202.812435pt;}
.y1a4{bottom:202.813155pt;}
.y2e5{bottom:207.876600pt;}
.y1d8{bottom:208.406491pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y2b6{bottom:208.933266pt;}
.y1c8{bottom:209.163119pt;}
.ydf{bottom:209.166207pt;}
.ya3{bottom:210.073735pt;}
.y145{bottom:210.445989pt;}
.y265{bottom:212.940097pt;}
.y33b{bottom:213.470389pt;}
.y296{bottom:214.299350pt;}
.y1a3{bottom:214.302527pt;}
.y2e4{bottom:218.458893pt;}
.y125{bottom:218.610225pt;}
.y1d7{bottom:222.315909pt;}
.y1c7{bottom:223.146925pt;}
.yde{bottom:223.150013pt;}
.ya2{bottom:223.982091pt;}
.y33a{bottom:224.052683pt;}
.y264{bottom:224.353808pt;}
.y144{bottom:224.354345pt;}
.y293{bottom:225.714389pt;}
.y1a2{bottom:225.717088pt;}
.y2b5{bottom:226.470391pt;}
.y2e3{bottom:229.117698pt;}
.y294{bottom:229.493333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y339{bottom:234.710637pt;}
.y263{bottom:235.767519pt;}
.y1d6{bottom:236.299715pt;}
.y1c6{bottom:237.055281pt;}
.ydd{bottom:237.059431pt;}
.y292{bottom:237.128100pt;}
.y1a1{bottom:237.130799pt;}
.ya1{bottom:237.965897pt;}
.y143{bottom:238.339214pt;}
.y2e2{bottom:239.699992pt;}
.y5c{bottom:240.605668pt;}
.y53{bottom:240.606948pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y2b4{bottom:244.006667pt;}
.y338{bottom:245.369442pt;}
.y295{bottom:248.541333pt;}
.y291{bottom:248.542661pt;}
.y1a0{bottom:248.544510pt;}
.y1d5{bottom:250.208071pt;}
.y2e1{bottom:250.357946pt;}
.y1c5{bottom:251.040150pt;}
.ydc{bottom:251.043238pt;}
.ya0{bottom:251.874253pt;}
.y124{bottom:252.171785pt;}
.y142{bottom:252.247570pt;}
.y262{bottom:253.304645pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y5b{bottom:254.589474pt;}
.y52{bottom:254.590754pt;}
.y337{bottom:255.951736pt;}
.y290{bottom:259.956372pt;}
.y19f{bottom:259.959072pt;}
.y2e0{bottom:261.015900pt;}
.y2b3{bottom:261.543587pt;}
.y1d4{bottom:264.191877pt;}
.y261{bottom:264.718356pt;}
.y1c4{bottom:264.948505pt;}
.ydb{bottom:264.951593pt;}
.y9f{bottom:265.859122pt;}
.y123{bottom:266.080141pt;}
.y141{bottom:266.231376pt;}
.y336{bottom:266.609690pt;}
.y5a{bottom:268.497830pt;}
.y51{bottom:268.500173pt;}
.y28f{bottom:271.370934pt;}
.y19e{bottom:271.372783pt;}
.y2df{bottom:271.599044pt;}
.y2b2{bottom:274.242667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y260{bottom:276.132917pt;}
.y335{bottom:277.192834pt;}
.y1d3{bottom:278.101296pt;}
.y1c3{bottom:278.932312pt;}
.yda{bottom:278.935399pt;}
.y9e{bottom:279.767478pt;}
.y122{bottom:280.065009pt;}
.y140{bottom:280.139732pt;}
.y2de{bottom:282.256999pt;}
.y59{bottom:282.482699pt;}
.y50{bottom:282.483979pt;}
.y28e{bottom:282.784645pt;}
.y19d{bottom:282.787344pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y25f{bottom:287.622289pt;}
.y334{bottom:287.850788pt;}
.y2dd{bottom:292.839293pt;}
.y1c2{bottom:292.840667pt;}
.yd9{bottom:292.843755pt;}
.y9d{bottom:293.751284pt;}
.y121{bottom:294.048816pt;}
.y13f{bottom:294.123538pt;}
.y28d{bottom:294.198356pt;}
.y19c{bottom:294.201055pt;}
.y58{bottom:296.466505pt;}
.y4f{bottom:296.467785pt;}
.y333{bottom:298.433082pt;}
.y25e{bottom:299.036000pt;}
.y2dc{bottom:303.497247pt;}
.y2b1{bottom:304.485415pt;}
.y28c{bottom:305.688578pt;}
.y19b{bottom:305.690427pt;}
.y1c1{bottom:306.824474pt;}
.yd8{bottom:306.828624pt;}
.y9c{bottom:307.659640pt;}
.y120{bottom:307.957171pt;}
.y223{bottom:308.032000pt;}
.y13e{bottom:308.032956pt;}
.y332{bottom:309.091037pt;}
.y11{bottom:309.452000pt;}
.y57{bottom:310.374861pt;}
.y4e{bottom:310.376141pt;}
.y2db{bottom:314.156052pt;}
.y25d{bottom:316.572921pt;}
.y289{bottom:317.102767pt;}
.y19a{bottom:317.104988pt;}
.y2b0{bottom:318.469221pt;}
.y331{bottom:319.749841pt;}
.y1c0{bottom:320.733892pt;}
.yd7{bottom:320.736980pt;}
.y28a{bottom:320.881333pt;}
.y9b{bottom:321.643446pt;}
.y11f{bottom:321.940977pt;}
.y13d{bottom:322.016762pt;}
.y56{bottom:324.358667pt;}
.y4d{bottom:324.361009pt;}
.y2da{bottom:324.738345pt;}
.y222{bottom:326.855619pt;}
.y28b{bottom:328.516000pt;}
.y288{bottom:328.517328pt;}
.y199{bottom:328.518699pt;}
.y55{bottom:329.045333pt;}
.y25c{bottom:329.272000pt;}
.y330{bottom:330.332135pt;}
.y2af{bottom:332.377577pt;}
.y1bf{bottom:334.717698pt;}
.yd6{bottom:334.720786pt;}
.y2d9{bottom:335.396300pt;}
.y9a{bottom:335.552865pt;}
.y11e{bottom:335.849333pt;}
.y13c{bottom:335.925118pt;}
.y4c{bottom:338.269365pt;}
.y221{bottom:338.345841pt;}
.y287{bottom:339.931039pt;}
.y198{bottom:339.933260pt;}
.y32f{bottom:340.990089pt;}
.y10{bottom:343.809333pt;}
.y2d8{bottom:345.979444pt;}
.y2ae{bottom:346.361383pt;}
.y1be{bottom:348.626054pt;}
.yd5{bottom:348.629142pt;}
.y99{bottom:349.536671pt;}
.y220{bottom:349.759552pt;}
.y13b{bottom:349.908924pt;}
.y286{bottom:351.345600pt;}
.y197{bottom:351.346972pt;}
.y32e{bottom:351.572383pt;}
.y4b{bottom:352.253171pt;}
.y2d7{bottom:356.637398pt;}
.y2ad{bottom:360.346252pt;}
.y21f{bottom:361.173263pt;}
.y32d{bottom:362.231188pt;}
.yd4{bottom:362.614011pt;}
.yf{bottom:362.706666pt;}
.y285{bottom:362.759311pt;}
.y196{bottom:362.760683pt;}
.y98{bottom:363.445026pt;}
.y11c{bottom:363.742699pt;}
.y13a{bottom:363.818343pt;}
.y54{bottom:366.161527pt;}
.y2d6{bottom:367.219692pt;}
.y11d{bottom:368.504000pt;}
.y23e{bottom:369.036852pt;}
.y21e{bottom:372.587825pt;}
.y32c{bottom:372.889142pt;}
.y284{bottom:374.173023pt;}
.y195{bottom:374.175244pt;}
.y2ac{bottom:374.254607pt;}
.y1bd{bottom:376.519279pt;}
.yd3{bottom:376.522367pt;}
.y97{bottom:377.428833pt;}
.y11b{bottom:377.726505pt;}
.y139{bottom:377.802149pt;}
.y2d5{bottom:377.877646pt;}
.y4a{bottom:380.145333pt;}
.y23d{bottom:383.021721pt;}
.y32b{bottom:383.471436pt;}
.y21d{bottom:384.001536pt;}
.y194{bottom:385.588955pt;}
.y281{bottom:385.589366pt;}
.y2ab{bottom:388.238414pt;}
.y2d4{bottom:388.536451pt;}
.y282{bottom:389.366667pt;}
.y96{bottom:391.338251pt;}
.y11a{bottom:391.634861pt;}
.y138{bottom:391.710505pt;}
.y32a{bottom:394.129390pt;}
.y21c{bottom:395.416097pt;}
.y23c{bottom:396.930076pt;}
.y193{bottom:397.078327pt;}
.y280{bottom:397.078738pt;}
.y2d3{bottom:399.118745pt;}
.y2aa{bottom:402.146769pt;}
.yd2{bottom:404.414529pt;}
.y329{bottom:404.712534pt;}
.y95{bottom:405.322057pt;}
.y119{bottom:405.618667pt;}
.y117{bottom:405.622674pt;}
.y137{bottom:405.694311pt;}
.y21b{bottom:406.829808pt;}
.y283{bottom:408.490667pt;}
.y27f{bottom:408.493299pt;}
.y2d2{bottom:409.776699pt;}
.y118{bottom:410.305333pt;}
.y23b{bottom:410.913883pt;}
.y192{bottom:414.615452pt;}
.y328{bottom:415.370489pt;}
.y1bc{bottom:415.750236pt;}
.y2a9{bottom:416.131638pt;}
.y21a{bottom:418.319180pt;}
.yd1{bottom:418.399397pt;}
.y94{bottom:419.230413pt;}
.y116{bottom:419.532092pt;}
.y134{bottom:419.602332pt;}
.y136{bottom:419.602667pt;}
.y27e{bottom:419.907010pt;}
.y2d1{bottom:420.358993pt;}
.y135{bottom:424.365333pt;}
.y23a{bottom:424.822238pt;}
.y327{bottom:426.028443pt;}
.y191{bottom:426.029163pt;}
.y1bb{bottom:429.658592pt;}
.y219{bottom:429.733741pt;}
.y2a8{bottom:430.039994pt;}
.ye{bottom:430.990669pt;}
.y2d0{bottom:431.017797pt;}
.y27d{bottom:431.321571pt;}
.y18c{bottom:432.307753pt;}
.y49{bottom:432.985018pt;}
.y93{bottom:433.214219pt;}
.y115{bottom:433.515898pt;}
.y133{bottom:433.586138pt;}
.y326{bottom:436.611587pt;}
.y190{bottom:437.443725pt;}
.y239{bottom:438.807107pt;}
.y2cf{bottom:441.675752pt;}
.y27c{bottom:442.735282pt;}
.y1ba{bottom:443.642398pt;}
.y2a7{bottom:444.023800pt;}
.y48{bottom:445.759653pt;}
.yd0{bottom:446.291559pt;}
.yd{bottom:446.990669pt;}
.y92{bottom:447.123638pt;}
.y325{bottom:447.269541pt;}
.y218{bottom:447.270017pt;}
.y114{bottom:447.424254pt;}
.y132{bottom:447.494494pt;}
.y2ce{bottom:452.258046pt;}
.y238{bottom:452.715463pt;}
.y27b{bottom:454.148993pt;}
.y18f{bottom:454.980000pt;}
.y1b9{bottom:457.550754pt;}
.y324{bottom:457.851835pt;}
.y2a6{bottom:457.932156pt;}
.y47{bottom:458.534288pt;}
.y217{bottom:458.684578pt;}
.ycf{bottom:460.199915pt;}
.y91{bottom:461.107444pt;}
.y113{bottom:461.408060pt;}
.y131{bottom:461.479363pt;}
.y2cd{bottom:462.916000pt;}
.yc{bottom:462.990669pt;}
.y237{bottom:466.699269pt;}
.y323{bottom:468.508939pt;}
.y216{bottom:470.098289pt;}
.y46{bottom:471.233367pt;}
.y1b8{bottom:471.535623pt;}
.y27a{bottom:471.686119pt;}
.y2a5{bottom:471.917025pt;}
.y18e{bottom:472.441365pt;}
.yce{bottom:474.184784pt;}
.y90{bottom:475.015800pt;}
.y130{bottom:475.463169pt;}
.yb{bottom:478.990666pt;}
.y322{bottom:479.092083pt;}
.y236{bottom:480.607625pt;}
.y215{bottom:481.512000pt;}
.y279{bottom:483.099830pt;}
.y45{bottom:484.008002pt;}
.y18d{bottom:485.216000pt;}
.y1b7{bottom:485.443979pt;}
.y2cc{bottom:487.336512pt;}
.ycd{bottom:488.168590pt;}
.y8f{bottom:488.999606pt;}
.y112{bottom:489.301285pt;}
.y12f{bottom:489.371525pt;}
.y321{bottom:489.750038pt;}
.y278{bottom:494.514391pt;}
.y235{bottom:494.592494pt;}
.ya{bottom:494.990666pt;}
.y44{bottom:496.782637pt;}
.y214{bottom:499.049365pt;}
.y1b6{bottom:499.427785pt;}
.y2a4{bottom:499.809187pt;}
.y320{bottom:500.407992pt;}
.ycc{bottom:502.076946pt;}
.y8e{bottom:502.907962pt;}
.y111{bottom:503.209641pt;}
.y12e{bottom:503.356394pt;}
.y234{bottom:508.500850pt;}
.y43{bottom:509.557271pt;}
.y31f{bottom:510.990286pt;}
.y213{bottom:511.824000pt;}
.y277{bottom:512.050667pt;}
.y1b5{bottom:513.336141pt;}
.y18b{bottom:515.456087pt;}
.ycb{bottom:516.060752pt;}
.y8d{bottom:516.892830pt;}
.y110{bottom:517.193447pt;}
.y12d{bottom:517.264750pt;}
.y31e{bottom:521.649091pt;}
.y42{bottom:522.256351pt;}
.y233{bottom:522.484656pt;}
.y1b4{bottom:527.321009pt;}
.y18a{bottom:529.440956pt;}
.y276{bottom:529.588064pt;}
.yca{bottom:529.969108pt;}
.y8c{bottom:530.801186pt;}
.y12c{bottom:531.248556pt;}
.y31d{bottom:532.231384pt;}
.y41{bottom:535.030985pt;}
.y232{bottom:536.393012pt;}
.y1b3{bottom:541.229365pt;}
.y275{bottom:542.362699pt;}
.y31c{bottom:542.889339pt;}
.y189{bottom:543.349312pt;}
.yc9{bottom:543.953977pt;}
.y8b{bottom:544.784992pt;}
.y10f{bottom:545.086672pt;}
.y12b{bottom:545.156911pt;}
.y40{bottom:547.805620pt;}
.y212{bottom:549.845333pt;}
.y231{bottom:550.377880pt;}
.y31b{bottom:553.547293pt;}
.y274{bottom:555.137333pt;}
.y1b2{bottom:555.213171pt;}
.y188{bottom:557.333118pt;}
.yc8{bottom:557.862332pt;}
.y36{bottom:558.616137pt;}
.y8a{bottom:558.693348pt;}
.y10e{bottom:558.995028pt;}
.y12a{bottom:559.140718pt;}
.y3f{bottom:560.504699pt;}
.y31a{bottom:564.130437pt;}
.y230{bottom:564.286236pt;}
.y211{bottom:568.746589pt;}
.y1b1{bottom:569.121527pt;}
.y35{bottom:570.029848pt;}
.y187{bottom:571.241474pt;}
.yc7{bottom:571.846139pt;}
.y89{bottom:572.678217pt;}
.y10d{bottom:572.978834pt;}
.y129{bottom:573.050136pt;}
.y3e{bottom:573.279334pt;}
.y9{bottom:573.786667pt;}
.y319{bottom:574.788392pt;}
.y22f{bottom:578.270042pt;}
.y210{bottom:580.160300pt;}
.y34{bottom:581.444409pt;}
.y1b0{bottom:583.105333pt;}
.y186{bottom:585.225280pt;}
.y318{bottom:585.370685pt;}
.y258{bottom:585.375121pt;}
.yc6{bottom:585.754494pt;}
.y3d{bottom:586.053969pt;}
.y88{bottom:586.586573pt;}
.y10c{bottom:586.887189pt;}
.y20f{bottom:591.574861pt;}
.y22e{bottom:592.178398pt;}
.y8{bottom:592.685334pt;}
.y33{bottom:592.858120pt;}
.y317{bottom:596.029490pt;}
.y3c{bottom:598.753048pt;}
.y185{bottom:599.134698pt;}
.y2cb{bottom:599.210149pt;}
.y257{bottom:599.284539pt;}
.yc5{bottom:599.739363pt;}
.y87{bottom:600.570379pt;}
.y10b{bottom:600.872058pt;}
.y20e{bottom:602.988572pt;}
.y32{bottom:604.271831pt;}
.y22d{bottom:606.162204pt;}
.y316{bottom:606.611784pt;}
.y16a{bottom:609.112813pt;}
.y3b{bottom:611.527683pt;}
.y1f1{bottom:612.964000pt;}
.y184{bottom:613.118504pt;}
.y256{bottom:613.268345pt;}
.yc4{bottom:613.647719pt;}
.y20d{bottom:614.402283pt;}
.y86{bottom:614.478735pt;}
.y10a{bottom:614.780414pt;}
.y315{bottom:617.269738pt;}
.y31{bottom:618.180645pt;}
.y22c{bottom:620.071623pt;}
.y169{bottom:620.526524pt;}
.y3a{bottom:624.302318pt;}
.y20c{bottom:625.816845pt;}
.y183{bottom:627.026860pt;}
.y2ca{bottom:627.102311pt;}
.y255{bottom:627.176701pt;}
.yc3{bottom:627.631525pt;}
.y314{bottom:627.927692pt;}
.y85{bottom:628.463604pt;}
.y109{bottom:628.764220pt;}
.y30{bottom:629.594356pt;}
.y1f0{bottom:631.865425pt;}
.y168{bottom:631.941086pt;}
.y22b{bottom:634.055429pt;}
.y39{bottom:637.076953pt;}
.y20b{bottom:637.230556pt;}
.y313{bottom:638.510836pt;}
.y2f{bottom:641.008917pt;}
.y182{bottom:641.010666pt;}
.y254{bottom:641.160507pt;}
.yc2{bottom:641.539881pt;}
.y84{bottom:642.447410pt;}
.y1ef{bottom:643.279136pt;}
.y167{bottom:643.354797pt;}
.y7{bottom:645.598667pt;}
.y22a{bottom:647.963785pt;}
.y20a{bottom:648.719928pt;}
.y312{bottom:649.168791pt;}
.y38{bottom:649.776032pt;}
.y2e{bottom:652.422628pt;}
.y1ee{bottom:654.693697pt;}
.y166{bottom:654.769358pt;}
.y181{bottom:654.995535pt;}
.y253{bottom:655.068863pt;}
.yc1{bottom:655.524750pt;}
.y2c9{bottom:655.902001pt;}
.y83{bottom:656.355766pt;}
.y108{bottom:656.657445pt;}
.y311{bottom:659.751085pt;}
.y209{bottom:660.134489pt;}
.y229{bottom:661.947591pt;}
.y37{bottom:662.550667pt;}
.y2d{bottom:663.912000pt;}
.y1ed{bottom:666.107408pt;}
.y165{bottom:666.183069pt;}
.y180{bottom:668.903891pt;}
.y3{bottom:668.977329pt;}
.y252{bottom:669.053732pt;}
.yc0{bottom:669.433106pt;}
.y2c8{bottom:669.886870pt;}
.y82{bottom:670.339572pt;}
.y310{bottom:670.409039pt;}
.y208{bottom:671.548200pt;}
.y228{bottom:675.857009pt;}
.y164{bottom:677.596780pt;}
.y30f{bottom:681.067844pt;}
.y17f{bottom:682.887697pt;}
.y251{bottom:682.962088pt;}
.y207{bottom:682.962761pt;}
.ybf{bottom:683.416912pt;}
.y81{bottom:684.248990pt;}
.y2c{bottom:688.554667pt;}
.y1ec{bottom:689.011341pt;}
.y163{bottom:689.087002pt;}
.y227{bottom:689.840816pt;}
.y107{bottom:690.219005pt;}
.y30e{bottom:691.650137pt;}
.y206{bottom:694.376472pt;}
.y17e{bottom:696.796053pt;}
.ybe{bottom:697.325268pt;}
.y2c7{bottom:697.779032pt;}
.y80{bottom:698.232796pt;}
.y1eb{bottom:700.425053pt;}
.y162{bottom:700.500713pt;}
.y30d{bottom:702.308092pt;}
.y226{bottom:703.749171pt;}
.y106{bottom:704.127360pt;}
.y205{bottom:705.790183pt;}
.y17d{bottom:710.780922pt;}
.y250{bottom:710.854250pt;}
.ybd{bottom:711.310136pt;}
.y1ea{bottom:711.839614pt;}
.y161{bottom:711.914424pt;}
.y7f{bottom:712.141152pt;}
.y30c{bottom:712.891236pt;}
.y204{bottom:717.204745pt;}
.y225{bottom:717.732977pt;}
.y105{bottom:718.111167pt;}
.y1e9{bottom:723.253325pt;}
.y160{bottom:723.328986pt;}
.y30b{bottom:723.549190pt;}
.y17c{bottom:724.689278pt;}
.y24f{bottom:724.839119pt;}
.ybc{bottom:725.218492pt;}
.y2c6{bottom:725.898607pt;}
.y7e{bottom:726.124958pt;}
.y203{bottom:728.618456pt;}
.y224{bottom:731.641333pt;}
.y104{bottom:732.020585pt;}
.y2b{bottom:732.548000pt;}
.y30a{bottom:734.131484pt;}
.y1e8{bottom:734.667036pt;}
.y15f{bottom:734.742697pt;}
.y2a{bottom:736.328000pt;}
.y17b{bottom:738.673084pt;}
.y24e{bottom:738.746412pt;}
.ybb{bottom:739.202298pt;}
.y2c5{bottom:739.806963pt;}
.y7d{bottom:740.033314pt;}
.y202{bottom:740.108678pt;}
.y29{bottom:743.962667pt;}
.y309{bottom:744.789438pt;}
.y103{bottom:746.004391pt;}
.y1e7{bottom:746.081597pt;}
.y15e{bottom:746.157258pt;}
.y28{bottom:747.741333pt;}
.y201{bottom:751.522389pt;}
.y17a{bottom:752.581440pt;}
.y24d{bottom:752.730218pt;}
.yba{bottom:753.110654pt;}
.y2c4{bottom:753.790769pt;}
.y7c{bottom:754.018183pt;}
.y308{bottom:755.448243pt;}
.y35e{bottom:755.454319pt;}
.y1e6{bottom:757.495308pt;}
.y15d{bottom:757.570969pt;}
.y102{bottom:759.912747pt;}
.y25b{bottom:761.574667pt;}
.y200{bottom:762.936100pt;}
.y26{bottom:765.884000pt;}
.y307{bottom:766.030537pt;}
.y35d{bottom:766.036613pt;}
.y179{bottom:766.566308pt;}
.y24c{bottom:766.638574pt;}
.yb9{bottom:767.094460pt;}
.y2c3{bottom:767.700188pt;}
.y7b{bottom:767.926539pt;}
.y15c{bottom:768.984680pt;}
.y27{bottom:772.157333pt;}
.y101{bottom:773.593333pt;}
.y1ff{bottom:774.350661pt;}
.y100{bottom:775.181333pt;}
.yff{bottom:775.182080pt;}
.y306{bottom:776.688491pt;}
.y35c{bottom:776.694567pt;}
.y1e5{bottom:780.399241pt;}
.y178{bottom:780.474664pt;}
.y15b{bottom:780.474902pt;}
.y24b{bottom:780.623443pt;}
.yb8{bottom:781.003879pt;}
.y2{bottom:781.661334pt;}
.y2c2{bottom:781.683994pt;}
.y7a{bottom:781.910345pt;}
.y1fe{bottom:785.764372pt;}
.y305{bottom:787.270785pt;}
.y35b{bottom:787.277711pt;}
.yfe{bottom:788.788000pt;}
.yfc{bottom:790.450505pt;}
.yfd{bottom:790.450667pt;}
.y1e4{bottom:791.812953pt;}
.y15a{bottom:791.888613pt;}
.y24a{bottom:794.531798pt;}
.yb7{bottom:794.987685pt;}
.y79{bottom:795.818701pt;}
.y1fd{bottom:797.178934pt;}
.y304{bottom:797.929589pt;}
.y35a{bottom:797.935665pt;}
.y25{bottom:799.219748pt;}
.y1e3{bottom:803.227514pt;}
.y159{bottom:803.303174pt;}
.yfb{bottom:804.358861pt;}
.y177{bottom:808.366826pt;}
.y249{bottom:808.515605pt;}
.y303{bottom:808.587544pt;}
.y1fc{bottom:808.592645pt;}
.y359{bottom:808.593620pt;}
.yb6{bottom:808.896041pt;}
.y2c1{bottom:809.576156pt;}
.y78{bottom:809.803570pt;}
.y1e2{bottom:814.641225pt;}
.y158{bottom:814.716886pt;}
.yfa{bottom:816.680000pt;}
.yf9{bottom:818.342667pt;}
.yf8{bottom:818.343896pt;}
.y302{bottom:819.169838pt;}
.y358{bottom:819.175914pt;}
.y1fb{bottom:820.082017pt;}
.y24{bottom:822.198667pt;}
.y248{bottom:822.423960pt;}
.yb5{bottom:822.879847pt;}
.y77{bottom:823.711925pt;}
.y1e1{bottom:826.054936pt;}
.y157{bottom:826.130597pt;}
.y301{bottom:829.827792pt;}
.y357{bottom:829.834718pt;}
.y1fa{bottom:831.496578pt;}
.yf7{bottom:832.253315pt;}
.y176{bottom:836.260051pt;}
.y247{bottom:836.408829pt;}
.yb4{bottom:836.789265pt;}
.y1e0{bottom:837.469497pt;}
.y156{bottom:837.545158pt;}
.y76{bottom:837.695732pt;}
.y300{bottom:840.410936pt;}
.y356{bottom:840.417012pt;}
.y1f7{bottom:842.911966pt;}
.yf6{bottom:846.237121pt;}
.y1f8{bottom:846.689333pt;}
.y1df{bottom:848.883208pt;}
.y155{bottom:848.958869pt;}
.y246{bottom:850.317185pt;}
.yb3{bottom:850.773072pt;}
.y2ff{bottom:851.068890pt;}
.y355{bottom:851.074966pt;}
.y75{bottom:851.604087pt;}
.y1f9{bottom:854.324000pt;}
.y1f6{bottom:854.325677pt;}
.y1{bottom:859.312000pt;}
.yf5{bottom:860.145477pt;}
.y154{bottom:860.373430pt;}
.y2fe{bottom:861.651184pt;}
.y354{bottom:861.658110pt;}
.y245{bottom:864.300991pt;}
.yb2{bottom:864.681427pt;}
.y74{bottom:865.588956pt;}
.y1f5{bottom:865.740238pt;}
.y1de{bottom:871.787141pt;}
.y153{bottom:871.862802pt;}
.y2fd{bottom:872.309989pt;}
.y353{bottom:872.316065pt;}
.yf4{bottom:874.129283pt;}
.y1f4{bottom:877.153949pt;}
.y244{bottom:878.284797pt;}
.yb1{bottom:878.665234pt;}
.y73{bottom:879.497312pt;}
.y2fc{bottom:882.967943pt;}
.y352{bottom:882.974019pt;}
.y1dd{bottom:883.200853pt;}
.y152{bottom:883.276513pt;}
.y1f3{bottom:888.567660pt;}
.y65{bottom:892.194667pt;}
.yb0{bottom:892.574652pt;}
.y72{bottom:893.481118pt;}
.y2fb{bottom:893.550237pt;}
.y351{bottom:893.556313pt;}
.y1dc{bottom:894.615414pt;}
.y151{bottom:894.691074pt;}
.yf3{bottom:898.545333pt;}
.yf2{bottom:900.132000pt;}
.yf1{bottom:900.133053pt;}
.y2fa{bottom:904.208191pt;}
.y350{bottom:904.215118pt;}
.y1db{bottom:906.029125pt;}
.y150{bottom:906.104786pt;}
.y243{bottom:906.178022pt;}
.y71{bottom:907.389474pt;}
.y2f9{bottom:914.791335pt;}
.y34f{bottom:914.797411pt;}
.y1da{bottom:917.443686pt;}
.y14f{bottom:917.518497pt;}
.yaf{bottom:920.466814pt;}
.y70{bottom:921.374343pt;}
.y25a{bottom:923.641911pt;}
.y2f8{bottom:925.449290pt;}
.y34e{bottom:925.455366pt;}
.yf0{bottom:925.908000pt;}
.yef{bottom:927.496000pt;}
.yee{bottom:927.497602pt;}
.y14e{bottom:928.933058pt;}
.y1f2{bottom:929.008719pt;}
.y64{bottom:929.310667pt;}
.y1d9{bottom:934.979962pt;}
.y259{bottom:935.055622pt;}
.y242{bottom:935.279514pt;}
.y6f{bottom:935.282699pt;}
.y2f7{bottom:936.107244pt;}
.y34d{bottom:936.113320pt;}
.y14d{bottom:946.469333pt;}
.y2f6{bottom:946.689538pt;}
.y34c{bottom:946.696464pt;}
.y241{bottom:949.264382pt;}
.y6e{bottom:949.266505pt;}
.yed{bottom:953.272000pt;}
.yeb{bottom:954.935903pt;}
.yec{bottom:954.936000pt;}
.y2f5{bottom:957.348342pt;}
.y34b{bottom:957.354418pt;}
.y240{bottom:963.172738pt;}
.y6d{bottom:963.174861pt;}
.y14c{bottom:964.006699pt;}
.y63{bottom:966.500000pt;}
.y2f4{bottom:967.930636pt;}
.y34a{bottom:967.936712pt;}
.y14b{bottom:976.781333pt;}
.y23f{bottom:977.156544pt;}
.y6c{bottom:977.158667pt;}
.y2f3{bottom:978.588591pt;}
.y349{bottom:978.594667pt;}
.y68{bottom:1002.226640pt;}
.yac{bottom:1003.225145pt;}
.yad{bottom:1003.226640pt;}
.y348{bottom:1003.231019pt;}
.y35f{bottom:1003.236245pt;}
.yea{bottom:1003.237333pt;}
.hd{height:20.907656pt;}
.h13{height:23.522344pt;}
.h12{height:28.021406pt;}
.h7{height:28.560000pt;}
.h21{height:28.819882pt;}
.h20{height:29.604555pt;}
.he{height:29.887031pt;}
.h16{height:29.887500pt;}
.h17{height:30.837248pt;}
.h15{height:31.200285pt;}
.h18{height:31.437698pt;}
.hf{height:32.689219pt;}
.hc{height:32.997656pt;}
.h10{height:33.623437pt;}
.h22{height:35.171882pt;}
.h11{height:37.359844pt;}
.h6{height:40.800000pt;}
.h1b{height:41.813184pt;}
.h1d{height:41.815383pt;}
.h3{height:42.840000pt;}
.h1e{height:43.706510pt;}
.h1c{height:43.711844pt;}
.h1f{height:44.010510pt;}
.h19{height:44.015844pt;}
.h1a{height:48.475594pt;}
.h2{height:48.960000pt;}
.hb{height:49.501875pt;}
.ha{height:63.044531pt;}
.h14{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:50.116533pt;}
.x59{left:54.651867pt;}
.xb{left:55.785733pt;}
.x13{left:56.843334pt;}
.x14{left:58.280267pt;}
.x51{left:63.647200pt;}
.xd{left:66.065235pt;}
.x15{left:67.124400pt;}
.x5b{left:71.961160pt;}
.x37{left:74.003067pt;}
.x38{left:79.823600pt;}
.x24{left:82.242400pt;}
.x25{left:88.062933pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x26{left:106.733733pt;}
.x27{left:112.554267pt;}
.x6{left:117.543200pt;}
.x7{left:123.288133pt;}
.x39{left:124.270800pt;}
.x1e{left:126.840016pt;}
.x28{left:140.220000pt;}
.x4f{left:143.544874pt;}
.x29{left:146.041333pt;}
.x43{left:170.454572pt;}
.x5c{left:175.292396pt;}
.x2a{left:178.242667pt;}
.x4{left:180.874667pt;}
.x2b{left:184.138667pt;}
.x8{left:188.900000pt;}
.x5a{left:193.736599pt;}
.x9{left:194.721333pt;}
.x1a{left:196.609364pt;}
.x50{left:197.666913pt;}
.x30{left:199.105333pt;}
.x2e{left:200.012000pt;}
.x2f{left:204.698667pt;}
.x2c{left:208.402667pt;}
.x2d{left:213.089333pt;}
.x18{left:220.270667pt;}
.x44{left:244.608840pt;}
.x4d{left:251.941125pt;}
.xa{left:263.130667pt;}
.x1f{left:265.320313pt;}
.xc{left:269.329333pt;}
.x16{left:304.554667pt;}
.x46{left:312.185467pt;}
.x17{left:317.556000pt;}
.x45{left:322.163587pt;}
.x4e{left:326.094542pt;}
.x31{left:327.156000pt;}
.x32{left:331.918667pt;}
.x1b{left:335.165322pt;}
.x3a{left:344.012000pt;}
.x3b{left:352.328000pt;}
.x33{left:358.450667pt;}
.x34{left:363.137333pt;}
.x35{left:371.301333pt;}
.x36{left:377.197333pt;}
.x5e{left:392.559973pt;}
.x23{left:394.946693pt;}
.x3{left:404.408000pt;}
.xe{left:408.790162pt;}
.x3e{left:416.806667pt;}
.x19{left:424.738863pt;}
.x42{left:425.801333pt;}
.x5d{left:430.861421pt;}
.x55{left:450.670667pt;}
.x49{left:460.950667pt;}
.x1c{left:473.645620pt;}
.x56{left:491.489333pt;}
.xf{left:493.304000pt;}
.x3f{left:497.385291pt;}
.x4c{left:505.775125pt;}
.x58{left:517.417333pt;}
.x10{left:519.685333pt;}
.x40{left:526.864902pt;}
.x47{left:530.871518pt;}
.x57{left:535.181333pt;}
.x20{left:542.356569pt;}
.x52{left:553.925922pt;}
.x4a{left:569.043606pt;}
.x48{left:604.419649pt;}
.x22{left:609.053347pt;}
.x1d{left:612.201578pt;}
.x53{left:619.991298pt;}
.x4b{left:653.704506pt;}
.x11{left:667.313333pt;}
.x12{left:674.645333pt;}
.x41{left:677.439857pt;}
.x21{left:680.912527pt;}
.x54{left:689.458853pt;}
.x3c{left:700.800000pt;}
.x3d{left:710.021333pt;}
}




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